You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: replace using hard-coded certs with dynamically generated ones (#342)
* feat: replace using hard-coded certs with dynamically generated ones
* added az login
* set AZ KeyVault secrets before deploy test
* allow no sub
* escape command
* avoid logging of sensitive info
Copy file name to clipboardExpand all lines: edc-tests/deployment/src/main/resources/helm/test-infrastructure/values.yaml
+22-136
Original file line number
Diff line number
Diff line change
@@ -5,12 +5,9 @@
5
5
6
6
fullnameOverride: ""
7
7
nameOverride: ""
8
-
9
8
# -- Existing image pull secret to use to [obtain the container image from private registries](https://kubernetes.io/docs/concepts/containers/images/#using-a-private-registry)
# [node selector](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector) to constrain pods to nodes
255
250
nodeSelector: {}
256
251
# [tolerations](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/) to configure preferred nodes
257
252
tolerations: []
258
253
# [affinity](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity) to configure which nodes the pods can be scheduled on
259
254
affinity: {}
260
-
261
255
url:
262
256
# -- Explicitly declared url for reaching the ids api (e.g. if ingresses not used)
263
257
ids: ""
264
-
265
258
dataplane:
266
259
image:
267
260
# -- Which derivate of the data plane to use. when left empty the deployment will select the correct image automatically
# -- [resource management](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) for the container
418
-
resources:
419
-
{}
420
-
# We usually recommend not to specify default resources and to leave this as a conscious
421
-
# choice for the user. This also increases chances charts run on environments with little
422
-
# resources, such as Minikube. If you do want to specify resources, uncomment the following
423
-
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
424
-
# limits:
425
-
# cpu: 100m
426
-
# memory: 128Mi
427
-
# requests:
428
-
# cpu: 100m
411
+
resources: {}
412
+
# We usually recommend not to specify default resources and to leave this as a conscious
413
+
# choice for the user. This also increases chances charts run on environments with little
414
+
# resources, such as Minikube. If you do want to specify resources, uncomment the following
415
+
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
416
+
# limits:
417
+
# cpu: 100m
418
+
# memory: 128Mi
419
+
# requests:
420
+
# cpu: 100m
429
421
# memory: 128Mi
430
422
replicaCount: 1
431
423
autoscaling:
@@ -457,17 +449,14 @@ runtime:
457
449
tolerations: []
458
450
# [affinity](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity) to configure which nodes the pods can be scheduled on
459
451
affinity: {}
460
-
461
452
url:
462
453
# -- Explicitly declared url for reaching the public api (e.g. if ingresses not used)
# Specifies whether a service account should be created
502
488
create: true
@@ -507,8 +493,6 @@ runtime:
507
493
name: ""
508
494
# -- Existing image pull secret bound to the service account to use to [obtain the container image from private registries](https://kubernetes.io/docs/concepts/containers/images/#using-a-private-registry)
0 commit comments