Skip to content
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.

Commit

Permalink
Merge pull request #171 from catenax-ng/hotfix/deployment
Browse files Browse the repository at this point in the history
Hotfix/deployment
  • Loading branch information
matbmoser authored Feb 17, 2023
2 parents 2a58b5f + 037f5c3 commit 3401f1d
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 14 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/publish-consumer-backend-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ on:
push:

branches: [ "main", "develop" ]

tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
# Publish semver tags as releases.
# tags: [ 'v*.*.*' ]

Expand Down Expand Up @@ -82,5 +83,5 @@ jobs:
with:
context: consumer-backend/productpass
push: true
tags: ${{ steps.meta.outputs.tags }}
tags: ${{ steps.meta.outputs.tags }}, ${{ env.REGISTRY }}/${{ github.repository }}/${{ env.IMAGE_NAME }}:latest
labels: ${{ steps.meta.outputs.labels }}
8 changes: 3 additions & 5 deletions .github/workflows/publish-consumer-ui-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,9 @@ name: "Publish Consumer UI Docker Images"

on:
push:

branches: [ "main", "develop" ]

# Publish semver tags as releases.
# tags: [ 'v*.*.*' ]
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'

env:
REGISTRY: ghcr.io
Expand Down Expand Up @@ -72,5 +70,5 @@ jobs:
uses: docker/build-push-action@v3
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
tags: ${{ steps.meta.outputs.tags }}, ${{ env.REGISTRY }}/${{ github.repository }}/${{ env.IMAGE_NAME }}:latest
labels: ${{ steps.meta.outputs.labels }}
2 changes: 1 addition & 1 deletion charts/consumer-backend/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.9
version: 0.2.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 0 additions & 2 deletions charts/consumer-backend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ namespace: product-material-pass
image:
repository: ghcr.io/catenax-ng/product-battery-passport-consumer-app/product-pass-consumer-backend
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: placeholder

imagePullSecrets: []
nameOverride: "consumer-backend"
Expand Down
2 changes: 1 addition & 1 deletion charts/consumer-ui/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.9
version: 0.2.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 0 additions & 2 deletions charts/consumer-ui/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ namespace: product-material-pass
image:
repository: ghcr.io/catenax-ng/product-battery-passport-consumer-app/consumer-ui
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: placeholder

imagePullSecrets: []
nameOverride: "consumer-ui"
Expand Down
1 change: 0 additions & 1 deletion src/services/service.const.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,3 @@ else { // for local run
}

export {TWIN_REGISTRY_URL, AAS_PROXY_URL, MOCK_AUTH_URL, GOOGLE_CHART_API_URL, DUMMY_SERVICE, INIT_OPTIONS, REDIRECT_URI, CX_REGISTRY_URL, SERVER_URL, API_KEY, CLIENT_CREDENTIALS, IDP_URL, BACKEND, VERSION, API_TIMEOUT, API_DELAY, API_MAX_RETRIES};

0 comments on commit 3401f1d

Please sign in to comment.