Skip to content

Commit

Permalink
Add missing public registry alias to update of combine-cert-proxy (#1716
Browse files Browse the repository at this point in the history
)

* Add missing public registry alias to update of combine-cert-proxy
  • Loading branch information
jmgrady authored Aug 24, 2022
1 parent 41dd5b0 commit 8b17829
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/combine-deploy-update/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,22 +36,22 @@ runs:
- name: Update frontend
run: kubectl --context ${{ inputs.kube_context }}
set image deployment/frontend
frontend="${{ inputs.image_registry }}${{ inputs.image_registry_alias}}/combine_frontend:${{ inputs.image_tag }}"
frontend="${{ inputs.image_registry }}${{ inputs.image_registry_alias }}/combine_frontend:${{ inputs.image_tag }}"
shell: bash
- name: Update backend
run: kubectl --context ${{ inputs.kube_context }}
set image deployment/backend
backend="${{ inputs.image_registry }}${{ inputs.image_registry_alias}}/combine_backend:${{ inputs.image_tag }}"
backend="${{ inputs.image_registry }}${{ inputs.image_registry_alias }}/combine_backend:${{ inputs.image_tag }}"
shell: bash
- name: Update maintenance
run: kubectl --context ${{ inputs.kube_context }}
set image deployment/maintenance
maintenance="${{ inputs.image_registry }}${{ inputs.image_registry_alias}}/combine_maint:${{ inputs.image_tag }}"
maintenance="${{ inputs.image_registry }}${{ inputs.image_registry_alias }}/combine_maint:${{ inputs.image_tag }}"
shell: bash
- name: Update Cert Proxy Server
if: ${{ inputs.update_cert_proxy == 'true' }}
run: kubectl --context ${{ inputs.kube_context }}
--namespace combine-cert-proxy
set image deployment/combine-cert-proxy
combine-cert-proxy="${{ inputs.image_registry }}/combine_maint:${{ inputs.image_tag }}"
combine-cert-proxy="${{ inputs.image_registry }}${{ inputs.image_registry_alias }}/combine_maint:${{ inputs.image_tag }}"
shell: bash

0 comments on commit 8b17829

Please sign in to comment.