File tree 8 files changed +26
-14
lines changed
8 files changed +26
-14
lines changed Original file line number Diff line number Diff line change @@ -15,4 +15,5 @@ DOC_LINK ='https://opendatahub.io/docs.html'
15
15
COMMUNITY_LINK = ' https://opendatahub.io/community.html'
16
16
ENABLED_APPS_CM = ' odh-enabled-applications-config'
17
17
KUSTOMIZE_MANIFEST_DIR = manifests
18
+ KUSTOMIZE_DEFAULT_OVERLAY = /overlays/dev
18
19
DASHBOARD_CONFIG = ' odh-dashboard-config'
Original file line number Diff line number Diff line change @@ -79,5 +79,4 @@ Once we reach a date in which we want to do a release (see other sections for mo
79
79
- Exclude the ` overlays ` folder as this is for internal testing purposes
80
80
- Copy the OWNERS file into the root of the odh-dashboard manifest folder
81
81
- Update the ` ./base/kustomization.yaml ` so that the ` odh-dashboard ` images section has the ` newTag ` equal to the current release version (aka the tag we created earlier)
82
- - In the ` ./base/deployment.yaml ` we'll want to set the ODH replicas to ` 2 `
83
82
- Update the top row of the component versions table on the root readme to have the latest release version (aka the tag we created earlier)
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- printf " \n\n######## deploy ########\n"
2
+ printf " \n\n######## deploy overlay ${KUSTOMIZE_DEFAULT_OVERLAY} ########\n"
3
3
4
- KUSTOMIZE_MANIFEST_DIR_OVERLAY_DEV =" ${KUSTOMIZE_MANIFEST_DIR} /overlays/dev "
4
+ KUSTOMIZE_MANIFEST_DIR_OVERLAY =" ${KUSTOMIZE_MANIFEST_DIR}${KUSTOMIZE_DEFAULT_OVERLAY} "
5
5
6
6
if [[ -z " ${OC_PROJECT} " ]]; then
7
7
echo " ERROR: No value defined for OC_PROJECT env var"
@@ -19,7 +19,7 @@ oc config set-context --current --namespace=${OC_PROJECT}
19
19
oc label namespace ${OC_PROJECT} openshift.io/cluster-monitoring=' true' --overwrite
20
20
21
21
# Deploy dashboard manifests using kustomize
22
- pushd ${KUSTOMIZE_MANIFEST_DIR_OVERLAY_DEV }
22
+ pushd ${KUSTOMIZE_MANIFEST_DIR_OVERLAY }
23
23
kustomize edit set namespace ${OC_PROJECT}
24
24
kustomize edit set image quay.io/opendatahub/odh-dashboard=${IMAGE_REPOSITORY}
25
25
if [[ ! -z " ${OAUTH_IMAGE_REPOSITORY} " ]]; then
28
28
popd
29
29
30
30
# Use kustomize to build the yaml objects so we get full support for all the kustomize standards
31
- kustomize build ${KUSTOMIZE_MANIFEST_DIR_OVERLAY_DEV } | oc apply -f -
31
+ kustomize build ${KUSTOMIZE_MANIFEST_DIR_OVERLAY } | oc apply -f -
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- printf " \n\n######## undeploy ########\n"
2
+ printf " \n\n######## undeploy overlay ${KUSTOMIZE_DEFAULT_OVERLAY} ########\n"
3
3
4
- KUSTOMIZE_MANIFEST_DIR_OVERLAY_DEV =" ${KUSTOMIZE_MANIFEST_DIR} /overlays/dev "
4
+ KUSTOMIZE_MANIFEST_DIR_OVERLAY =" ${KUSTOMIZE_MANIFEST_DIR}${KUSTOMIZE_DEFAULT_OVERLAY} "
5
5
6
6
if [[ -z " ${OC_PROJECT} " ]]; then
7
7
echo " ERROR: No value defined for OC_PROJECT env var"
@@ -19,9 +19,9 @@ oc config set-context --current --namespace=${OC_PROJECT}
19
19
oc label namespace ${OC_PROJECT} openshift.io/cluster-monitoring-
20
20
21
21
# Uninstall dashboard using kustomize
22
- pushd ${KUSTOMIZE_MANIFEST_DIR_OVERLAY_DEV }
22
+ pushd ${KUSTOMIZE_MANIFEST_DIR_OVERLAY }
23
23
kustomize edit set namespace ${OC_PROJECT}
24
24
popd
25
25
26
26
# Use kustomize to build the yaml objects so we get full support for all the kustomize standards
27
- kustomize build ${KUSTOMIZE_MANIFEST_DIR_OVERLAY_DEV } | oc delete --ignore-not-found=true -f -
27
+ kustomize build ${KUSTOMIZE_MANIFEST_DIR_OVERLAY } | oc delete --ignore-not-found=true -f -
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ kind: Deployment
3
3
metadata :
4
4
name : odh-dashboard
5
5
spec :
6
- replicas : 5
6
+ replicas : 2
7
7
selector :
8
8
matchLabels :
9
9
deployment : odh-dashboard
Original file line number Diff line number Diff line change 23
23
name : odh-notebook-controller
24
24
- kustomizeConfig :
25
25
overlays :
26
- # Uncomment the odhdashboard overlay below to have the operator deploy the configs
27
- # This should be removed from the deployed kfdef immediately after the operator deploys the configs
28
- # This will prevent the operator from reconciling the configs when they have been modified externally
29
- # - odhdashboardconfig
26
+ # Uncomment the performance overlay below to have the operator deploy more dashboard replicas
27
+ # - performance
30
28
repoRef :
31
29
name : manifests-dashboard # Use the odh-dashboard repo as the source for this kustomize manifest
32
30
path : manifests
Original file line number Diff line number Diff line change
1
+ - op : replace
2
+ path : /spec/replicas
3
+ value : 5
Original file line number Diff line number Diff line change
1
+ apiVersion : kustomize.config.k8s.io/v1beta1
2
+ kind : Kustomization
3
+ bases :
4
+ - ../../base
5
+ patchesJson6902 :
6
+ - path : deployment.yaml
7
+ target :
8
+ group : apps
9
+ version : v1
10
+ kind : Deployment
11
+ name : odh-dashboard
You can’t perform that action at this time.
0 commit comments