Skip to content

Commit

Permalink
Changes buggy break statement (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
joerivrij authored Jun 26, 2023
1 parent 56a4529 commit 9a3dd66
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 21 deletions.
18 changes: 9 additions & 9 deletions helm/ri-zgw/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,28 @@ appVersion: 0.1.0
dependencies:
- condition: services.ac.enabled
name: ac
version: 0.0.7
version: 0.0.9
- condition: services.brc.enabled
name: brc
version: 0.0.7
version: 0.0.9
- condition: services.drc.enabled
name: drc
version: 0.0.7
version: 0.0.9
- condition: services.nrc.enabled
name: nrc
version: 0.0.7
version: 0.0.9
- condition: services.token-issuer.enabled
name: token-issuer
version: 0.0.7
version: 0.0.9
- condition: services.vrl.enabled
name: vrl
version: 0.0.7
version: 0.0.9
- condition: services.zrc.enabled
name: zrc
version: 0.0.7
version: 0.0.9
- condition: services.ztc.enabled
name: ztc
version: 0.0.7
version: 0.0.9
description: Helm chart for referentie implementaties as part of API standards for
local government
home: https://gitlab.com/commonground/ri/infra
Expand All @@ -35,4 +35,4 @@ maintainers:
name: ri-zgw-test
sources:
- https://github.com/VNG-Realisatie/gemma-zaken
version: 0.0.7
version: 0.0.9
2 changes: 1 addition & 1 deletion helm/ri-zgw/charts/ac/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ appVersion: 1.0.0
description: gemma zaken
name: ac
type: application
version: 0.0.7
version: 0.0.9
2 changes: 1 addition & 1 deletion helm/ri-zgw/charts/brc/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ appVersion: 1.0.1.post0
description: gemma zaken
name: brc
type: application
version: 0.0.7
version: 0.0.9
2 changes: 1 addition & 1 deletion helm/ri-zgw/charts/drc/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ appVersion: pr-209
description: Documenten
name: drc
type: application
version: 0.0.7
version: 0.0.9
2 changes: 1 addition & 1 deletion helm/ri-zgw/charts/nrc/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ appVersion: 1.0.0.post1
description: gemma zaken
name: nrc
type: application
version: 0.0.7
version: 0.0.9
2 changes: 1 addition & 1 deletion helm/ri-zgw/charts/token-issuer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ appVersion: 0.1.0
description: gemma zaken
name: token-issuer
type: application
version: 0.0.7
version: 0.0.9
2 changes: 1 addition & 1 deletion helm/ri-zgw/charts/vrl/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ appVersion: 0.1.4
description: gemma zaken
name: vrl
type: application
version: 0.0.7
version: 0.0.9
4 changes: 2 additions & 2 deletions helm/ri-zgw/charts/zrc/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
appVersion: pr-267
appVersion: sha-8b01b36
description: gemma zaken
name: zrc
type: application
version: 0.0.7
version: 0.0.9
2 changes: 1 addition & 1 deletion helm/ri-zgw/charts/zrc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ secret:
service:
images:
imageRepo: ghcr.io/vng-realisatie/zaken-api
tag: pr-267
tag: sha-8b01b36
name: zrc
port: 8000
2 changes: 1 addition & 1 deletion helm/ri-zgw/charts/ztc/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ appVersion: pr-176
description: gemma zaken
name: ztc
type: application
version: 0.0.7
version: 0.0.9
2 changes: 1 addition & 1 deletion parser/env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ zrc:
tag: pr-267
ingressHost: k8s-zrc-local.test
test:
tag: pr-267
tag: sha-8b01b36
ingressHost: zaken-api.test.vng.cloud
production:
tag: 1.4.0
Expand Down
3 changes: 2 additions & 1 deletion parser/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ def set_versions(env, cwd, helm_path, version):
try:
tag = env_file[api][env]["tag"]
image_repo = env_file[api]["repo"].lower()
print(f"setting tag: {tag} for image: {image_repo}")
except KeyError:
continue

Expand Down Expand Up @@ -243,7 +244,7 @@ def set_versions(env, cwd, helm_path, version):
found = any(api in d.values() for d in values['ingress']['services'])
if not found:
if env == "test":
break
continue
values["ingress"]["services"].append(vrl_fixture)

svc = next(
Expand Down

0 comments on commit 9a3dd66

Please sign in to comment.