Skip to content

Commit 6a1bdde

Browse files
committed
Add performance overlay and sync deployment to odh-manifest
1 parent 3216f87 commit 6a1bdde

File tree

8 files changed

+26
-14
lines changed

8 files changed

+26
-14
lines changed

.env

+1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ DOC_LINK ='https://opendatahub.io/docs.html'
1515
COMMUNITY_LINK ='https://opendatahub.io/community.html'
1616
ENABLED_APPS_CM = 'odh-enabled-applications-config'
1717
KUSTOMIZE_MANIFEST_DIR=manifests
18+
KUSTOMIZE_DEFAULT_OVERLAY=/overlays/dev
1819
DASHBOARD_CONFIG = 'odh-dashboard-config'

docs/releases.md

-1
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,4 @@ Once we reach a date in which we want to do a release (see other sections for mo
7979
- Exclude the `overlays` folder as this is for internal testing purposes
8080
- Copy the OWNERS file into the root of the odh-dashboard manifest folder
8181
- 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`
8382
- 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)

install/deploy.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
2-
printf "\n\n######## deploy ########\n"
2+
printf "\n\n######## deploy overlay ${KUSTOMIZE_DEFAULT_OVERLAY} ########\n"
33

4-
KUSTOMIZE_MANIFEST_DIR_OVERLAY_DEV="${KUSTOMIZE_MANIFEST_DIR}/overlays/dev"
4+
KUSTOMIZE_MANIFEST_DIR_OVERLAY="${KUSTOMIZE_MANIFEST_DIR}${KUSTOMIZE_DEFAULT_OVERLAY}"
55

66
if [[ -z "${OC_PROJECT}" ]]; then
77
echo "ERROR: No value defined for OC_PROJECT env var"
@@ -19,7 +19,7 @@ oc config set-context --current --namespace=${OC_PROJECT}
1919
oc label namespace ${OC_PROJECT} openshift.io/cluster-monitoring='true' --overwrite
2020

2121
# Deploy dashboard manifests using kustomize
22-
pushd ${KUSTOMIZE_MANIFEST_DIR_OVERLAY_DEV}
22+
pushd ${KUSTOMIZE_MANIFEST_DIR_OVERLAY}
2323
kustomize edit set namespace ${OC_PROJECT}
2424
kustomize edit set image quay.io/opendatahub/odh-dashboard=${IMAGE_REPOSITORY}
2525
if [[ ! -z "${OAUTH_IMAGE_REPOSITORY}" ]]; then
@@ -28,4 +28,4 @@ fi
2828
popd
2929

3030
# 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 -

install/undeploy.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
2-
printf "\n\n######## undeploy ########\n"
2+
printf "\n\n######## undeploy overlay ${KUSTOMIZE_DEFAULT_OVERLAY} ########\n"
33

4-
KUSTOMIZE_MANIFEST_DIR_OVERLAY_DEV="${KUSTOMIZE_MANIFEST_DIR}/overlays/dev"
4+
KUSTOMIZE_MANIFEST_DIR_OVERLAY="${KUSTOMIZE_MANIFEST_DIR}${KUSTOMIZE_DEFAULT_OVERLAY}"
55

66
if [[ -z "${OC_PROJECT}" ]]; then
77
echo "ERROR: No value defined for OC_PROJECT env var"
@@ -19,9 +19,9 @@ oc config set-context --current --namespace=${OC_PROJECT}
1919
oc label namespace ${OC_PROJECT} openshift.io/cluster-monitoring-
2020

2121
# Uninstall dashboard using kustomize
22-
pushd ${KUSTOMIZE_MANIFEST_DIR_OVERLAY_DEV}
22+
pushd ${KUSTOMIZE_MANIFEST_DIR_OVERLAY}
2323
kustomize edit set namespace ${OC_PROJECT}
2424
popd
2525

2626
# 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 -

manifests/base/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: Deployment
33
metadata:
44
name: odh-dashboard
55
spec:
6-
replicas: 5
6+
replicas: 2
77
selector:
88
matchLabels:
99
deployment: odh-dashboard

manifests/kfdef/odh-dashboard-kfnbc-test.yaml

+2-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,8 @@ spec:
2323
name: odh-notebook-controller
2424
- kustomizeConfig:
2525
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
3028
repoRef:
3129
name: manifests-dashboard # Use the odh-dashboard repo as the source for this kustomize manifest
3230
path: manifests
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- op: replace
2+
path: /spec/replicas
3+
value: 5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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

0 commit comments

Comments
 (0)