File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7474 - name : Rollout
7575 shell : bash
7676 run : |
77- oc rollout status dc /${{ env.APP_NAME }} -n ${{ env.OPENSHIFT_REPOSITORY }}-${{ env.TAG_NAME }} -w
77+ oc rollout status deployment /${{ env.APP_NAME }} -n ${{ env.OPENSHIFT_REPOSITORY }}-${{ env.TAG_NAME }} -w
Original file line number Diff line number Diff line change 7474 - name : Rollout
7575 shell : bash
7676 run : |
77- oc rollout status dc /${{ env.APP_NAME }} -n ${{ env.OPENSHIFT_REPOSITORY }}-${{ env.TAG_NAME }} -w
77+ oc rollout status deployment /${{ env.APP_NAME }} -n ${{ env.OPENSHIFT_REPOSITORY }}-${{ env.TAG_NAME }} -w
Original file line number Diff line number Diff line change 7575 - name : Rollout
7676 shell : bash
7777 run : |
78- oc rollout status dc /${{ env.APP_NAME }} -n ${{ env.OPENSHIFT_REPOSITORY }}-${{ env.TAG_NAME }} -w
78+ oc rollout status deployment /${{ env.APP_NAME }} -n ${{ env.OPENSHIFT_REPOSITORY }}-${{ env.TAG_NAME }} -w
Original file line number Diff line number Diff line change 8686 - name : Rollout
8787 shell : bash
8888 run : |
89- oc rollout status dc /${{ env.APP_NAME }} -n ${{ env.OPENSHIFT_REPOSITORY }}-${{ env.TAG_NAME }} -w
89+ oc rollout status deployment /${{ env.APP_NAME }} -n ${{ env.OPENSHIFT_REPOSITORY }}-${{ env.TAG_NAME }} -w
Original file line number Diff line number Diff line change 7474 - name : Rollout
7575 shell : bash
7676 run : |
77- oc rollout status dc /${{ env.APP_NAME }} -n ${{ env.OPENSHIFT_REPOSITORY }}-${{ env.TAG_NAME }} -w
77+ oc rollout status deployment /${{ env.APP_NAME }} -n ${{ env.OPENSHIFT_REPOSITORY }}-${{ env.TAG_NAME }} -w
Original file line number Diff line number Diff line change 1+ ## August 22, 2025
2+
3+ - ** Bugfix** Finish upgrading DeploymentConfigs -> Deployments cross-app [ 🎟️ DESENG-847] ( https://citz-gdx.atlassian.net/browse/DESENG-847 )
4+ - Completed the replacement of all deprecated DeploymentConfigs with Deployments across the application.
5+ - Updated Helm charts and deployment scripts to reflect the changes.
6+
17## August 19, 2025
28
39- ** Feature** Restricted options for values in manual CD runs
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ metadata:
44 name : {{ .Values.app.name }}
55spec :
66 scaleTargetRef :
7- kind : DeploymentConfig
7+ kind : Deployment
88 name : {{ .Values.app.name }}
99 apiVersion : apps.openshift.io/v1
1010 minReplicas : {{ .Values.hpa.minReplicas }}
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ metadata:
77 app-group : met-app
88spec :
99 scaleTargetRef :
10- kind : DeploymentConfig
10+ kind : Deployment
1111 name : {{ .Values.app.name }}
1212 apiVersion : apps.openshift.io/v1
1313 minReplicas : {{ .Values.deployment.minReplicas }}
Original file line number Diff line number Diff line change @@ -8,5 +8,5 @@ oc tag met-web:latest met-web:$1
88oc tag met-analytics:latest met-analytics:$1
99oc tag dagster-etl:latest dagster-etl:$1
1010
11- oc rollout status dc /met-api -n $2 -$1 -w
12- oc rollout status dc /met-web -n $2 -$1 -w
11+ oc rollout status deployment /met-api -n $2 -$1 -w
12+ oc rollout status deployment /met-web -n $2 -$1 -w
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ metadata:
88 app-group : met-app
99spec :
1010 scaleTargetRef :
11- kind : DeploymentConfig
11+ kind : Deployment
1212 name : {{ .Values.app.name }}
1313 apiVersion : apps.openshift.io/v1
1414 minReplicas : {{ .Values.deployment.minReplicas }}
You can’t perform that action at this time.
0 commit comments