Skip to content

Commit 233c82d

Browse files
W3D3orazefabian
authored andcommitted
🔖 chore: Bump version to 0.9.2
1 parent b2e48f6 commit 233c82d

File tree

3 files changed

+22
-24
lines changed

3 files changed

+22
-24
lines changed

chart/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ annotations:
22
licenses: Apache-2.0
33
apiVersion: v2
44
name: unguard
5-
version: 0.9.1
5+
version: 0.9.2
66
description: Unguard is an insecure cloud-native microservices demo application.
77
type: application
88
home: https://github.com/dynatrace-oss/unguard
99
icon: https://github.com/dynatrace-oss/unguard/blob/main/docs/images/logo/unguard-logo-red-small.png
10-
appVersion: 0.9.1
10+
appVersion: 0.9.2

chart/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ The command removes all the Kubernetes components associated with the chart and
8484
To install Unguard in a specific version provide the `--version` flag with the version you want to install:
8585
8686
```sh
87-
helm install unguard oci://ghcr.io/dynatrace-oss/unguard/chart/unguard --version 0.9.1
87+
helm install unguard oci://ghcr.io/dynatrace-oss/unguard/chart/unguard --version 0.9.2
8888
```
8989
9090
## Parameters

chart/values.yaml

Lines changed: 19 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ mariaDB:
3838
serviceName: unguard-mariadb
3939
password: mariadb-root-password
4040

41-
4241
# Malicious load generator
4342
maliciousLoadGenerator:
4443
enabled: false
@@ -52,7 +51,7 @@ maliciousLoadGenerator:
5251
container:
5352
image:
5453
repository: ghcr.io/dynatrace-oss/unguard/unguard-malicious-load-generator
55-
tag: 0.9.1
54+
tag: 0.9.2
5655
pullPolicy: IfNotPresent
5756
ports:
5857
containerPort: 8083
@@ -110,7 +109,7 @@ userSimulator:
110109
container:
111110
image:
112111
repository: ghcr.io/dynatrace-oss/unguard/unguard-user-simulator
113-
tag: 0.9.1
112+
tag: 0.9.2
114113
pullPolicy: IfNotPresent
115114

116115
env:
@@ -141,7 +140,7 @@ membershipService:
141140
container:
142141
image:
143142
repository: ghcr.io/dynatrace-oss/unguard/unguard-membership-service
144-
tag: 0.9.1
143+
tag: 0.9.2
145144
pullPolicy: IfNotPresent
146145
ports:
147146
containerPort: 8083
@@ -171,7 +170,7 @@ userAuthService:
171170
container:
172171
image:
173172
repository: ghcr.io/dynatrace-oss/unguard/unguard-user-auth-service
174-
tag: 0.9.1
173+
tag: 0.9.2
175174
pullPolicy: IfNotPresent
176175
ports:
177176
containerPort: 9091
@@ -182,7 +181,7 @@ userAuthService:
182181
secretKeyRef:
183182
name: "{{ .Values.mariaDB.serviceName }}"
184183
key: "{{ .Values.mariaDB.password }}"
185-
JAEGER_AGENT_HOST: agent # change depending on your jaeger deployment
184+
JAEGER_AGENT_HOST: agent # change depending on your jaeger deployment
186185
JAEGER_SAMPLER_TYPE: const
187186
JAEGER_SAMPLER_PARAM: 0
188187
JAEGER_DISABLED: true
@@ -206,12 +205,12 @@ adService:
206205
container:
207206
image:
208207
repository: ghcr.io/dynatrace-oss/unguard/unguard-ad-service
209-
tag: 0.9.1
208+
tag: 0.9.2
210209
pullPolicy: IfNotPresent
211210
ports:
212211
containerPort: 8082
213212
env:
214-
JAEGER_AGENT_HOST: agent # change depending on your jaeger deployment
213+
JAEGER_AGENT_HOST: agent # change depending on your jaeger deployment
215214
JAEGER_SAMPLER_TYPE: const
216215
JAEGER_SAMPLER_PARAM: 0
217216
JAEGER_DISABLED: true
@@ -240,7 +239,7 @@ envoyProxy:
240239
container:
241240
image:
242241
repository: ghcr.io/dynatrace-oss/unguard/unguard-envoy-proxy
243-
tag: 0.9.1
242+
tag: 0.9.2
244243
pullPolicy: IfNotPresent
245244
ports:
246245
- name: http
@@ -264,13 +263,13 @@ microblogService:
264263
container:
265264
image:
266265
repository: ghcr.io/dynatrace-oss/unguard/unguard-microblog-service
267-
tag: 0.9.1
266+
tag: 0.9.2
268267
pullPolicy: IfNotPresent
269268
ports:
270269
containerPort: 8080
271270
env:
272271
SERVER_PORT: 8080
273-
JAEGER_AGENT_HOST: agent # change depending on your jaeger deployment
272+
JAEGER_AGENT_HOST: agent # change depending on your jaeger deployment
274273
JAEGER_SAMPLER_TYPE: const
275274
JAEGER_SAMPLER_PARAM: 0
276275
OPENTRACING_JAEGER_ENABLED: false
@@ -317,15 +316,15 @@ statusService:
317316
container:
318317
image:
319318
repository: ghcr.io/dynatrace-oss/unguard/unguard-status-service
320-
tag: 0.9.1
319+
tag: 0.9.2
321320
pullPolicy: IfNotPresent
322321
ports:
323322
containerPort: 8083
324323
env:
325324
SERVER_PORT: 8083
326325
API_PATH: /status-service
327326
KUBERNETES_NAMESPACE: unguard
328-
IGNORED_DEPLOYMENTS: unguard-user-simulator # add deployments to ignore separated by spaces
327+
IGNORED_DEPLOYMENTS: unguard-user-simulator # add deployments to ignore separated by spaces
329328
MARIADB_SERVICE: "{{ .Values.mariaDB.serviceName }}"
330329
MARIADB_PASSWORD:
331330
secretKeyRef:
@@ -348,7 +347,7 @@ proxyService:
348347
role:
349348
name: proxy-role
350349
rules:
351-
- apiGroups: [""] # "" indicates the core API group
350+
- apiGroups: [""] # "" indicates the core API group
352351
resources: ["pods"]
353352
verbs: ["create", "list", "get"]
354353
- apiGroups: [""]
@@ -372,13 +371,13 @@ proxyService:
372371
container:
373372
image:
374373
repository: ghcr.io/dynatrace-oss/unguard/unguard-proxy-service
375-
tag: 0.9.1
374+
tag: 0.9.2
376375
pullPolicy: IfNotPresent
377376
ports:
378377
containerPort: 8081
379378
env:
380379
SERVER_PORT: 8081
381-
JAEGER_AGENT_HOST: agent # change depending on your jaeger deployment
380+
JAEGER_AGENT_HOST: agent # change depending on your jaeger deployment
382381
JAEGER_SAMPLER_TYPE: const
383382
JAEGER_SAMPLER_PARAM: 0
384383
OPENTRACING_JAEGER_ENABLED: false
@@ -399,12 +398,12 @@ likeService:
399398
container:
400399
image:
401400
repository: ghcr.io/dynatrace-oss/unguard/unguard-like-service
402-
tag: 0.9.1
401+
tag: 0.9.2
403402
pullPolicy: IfNotPresent
404403
ports:
405404
containerPort: 8000
406405
env:
407-
JAEGER_COLLECTOR_HOST: collector # PHP OpenTelemetry sends data to jaeger-collector instead of jaeger-agent
406+
JAEGER_COLLECTOR_HOST: collector # PHP OpenTelemetry sends data to jaeger-collector instead of jaeger-agent
408407
JAEGER_DISABLED: true
409408
JAEGER_PORT: 4318
410409
SERVICE_NAME: unguard-like-service
@@ -416,7 +415,6 @@ likeService:
416415
name: "{{ .Values.mariaDB.serviceName }}"
417416
key: "{{ .Values.mariaDB.password }}"
418417

419-
420418
# Frontend
421419
frontend:
422420
name: frontend
@@ -433,12 +431,12 @@ frontend:
433431
container:
434432
image:
435433
repository: ghcr.io/dynatrace-oss/unguard/unguard-frontend
436-
tag: 0.9.1
434+
tag: 0.9.2
437435
pullPolicy: IfNotPresent
438436
ports:
439437
containerPort: 3000
440438
env:
441-
JAEGER_AGENT_HOST: agent # change depending on your jaeger deployment
439+
JAEGER_AGENT_HOST: agent # change depending on your jaeger deployment
442440
JAEGER_SAMPLER_TYPE: const
443441
JAEGER_SAMPLER_PARAM: 0
444442
JAEGER_DISABLED: true

0 commit comments

Comments
 (0)