Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…c-extension into develop
  • Loading branch information
cengiz-yazici committed Jul 30, 2024
2 parents ef2a035 + b28de54 commit 5525665
Showing 1 changed file with 21 additions and 18 deletions.
39 changes: 21 additions & 18 deletions .github/workflows/continious_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,23 +59,26 @@ jobs:
with:
context: ./connector
file: ./connector/Dockerfile
push: false
push: true
tags: ${{ steps.connector-meta.outputs.tags }}
labels: ${{ steps.connector-meta.outputs.labels }}
# deployment:
# runs-on: 'ubuntu-latest'
# needs: build-and-push-image
# steps:
# - name: 'Invoke Kubectl Provider'
# uses: actions-hub/kubectl@master
# env:
# KUBE_CONFIG: ${{ secrets.KUBECONFIG }}
# with:
# args: "set image deployment/${{vars.PROVIDER_DEPLOYMENT_NAME}} -n ${{ vars.PROVIDER_NS }} possible-x-edc=${{ env.REGISTRY }}/possible-x/connector:${{ github.sha }} "
#
# - name: 'Invoke Kubectl Consumer'
# uses: actions-hub/kubectl@master
# env:
# KUBE_CONFIG: ${{ secrets.KUBECONFIG }}
# with:
# args: "set image deployment/${{vars.CONSUMER_DEPLOYMENT_NAME}} -n ${{ vars.CONSUMER_NS }} possible-x-edc=${{ env.REGISTRY }}/possible-x/connector:${{ github.sha }} "
deploy-consumer:
runs-on: 'ubuntu-latest'
needs: build-and-push-image
steps:
- name: 'Invoke Kubectl Consumer'
uses: actions-hub/kubectl@master
env:
KUBE_CONFIG: ${{ secrets.KUBECONFIG }}
with:
args: "set image deployment/${{vars.NEW_CONSUMER_DEPLOYMENT_NAME}} -n ${{ vars.NEW_CONSUMER_NS }} possible-x-edc=${{ env.REGISTRY }}/possible-x/connector:${{ github.sha }} "
deploy-provider:
runs-on: 'ubuntu-latest'
needs: build-and-push-image
steps:
- name: 'Invoke Kubectl Provider'
uses: actions-hub/kubectl@master
env:
KUBE_CONFIG: ${{ secrets.KUBECONFIG }}
with:
args: "set image deployment/${{vars.NEW_PROVIDER_DEPLOYMENT_NAME}} -n ${{ vars.NEW_PROVIDER_NS }} possible-x-edc=${{ env.REGISTRY }}/possible-x/connector:${{ github.sha }} "

0 comments on commit 5525665

Please sign in to comment.