Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger committed Mar 29, 2024
1 parent 37d1a26 commit 45a6693
Show file tree
Hide file tree
Showing 14 changed files with 57 additions and 784 deletions.
1 change: 0 additions & 1 deletion .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ jobs:
{ dir: edc-tests/edc-controlplane/edr-api-tests },
{ dir: edc-tests/edc-controlplane/iatp-tests },
{ dir: edc-tests/edc-controlplane/policy-tests },
{ dir: edc-tests/edc-controlplane/ssi-summarycred-tests },
{ dir: edc-tests/edc-controlplane/transfer-tests }
]
steps:
Expand Down
70 changes: 35 additions & 35 deletions charts/tractusx-connector-azure-vault/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ fullnameOverride: ""
nameOverride: ""

# -- 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)
imagePullSecrets: [ ]
imagePullSecrets: []
# -- To add some custom labels
customLabels: { }
customLabels: {}

participant:
# -- BPN Number
Expand All @@ -48,7 +48,7 @@ controlplane:
pullPolicy: IfNotPresent
# -- Overrides the image tag whose default is the chart appVersion
tag: ""
initContainers: [ ]
initContainers: []
debug:
enabled: false
port: 1044
Expand Down Expand Up @@ -123,11 +123,11 @@ controlplane:
service:
# -- [Service type](https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types) to expose the running application on a set of Pods as a network service.
type: ClusterIP
annotations: { }
annotations: {}
# -- additional labels for the pod
podLabels: { }
podLabels: {}
# -- additional annotations for the pod
podAnnotations: { }
podAnnotations: {}
# -- The [pod security context](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod) defines privilege and access control settings for a Pod within the deployment
podSecurityContext:
seccompProfile:
Expand All @@ -146,7 +146,7 @@ controlplane:
drop:
- ALL
# -- Specifies which capabilities to add to issue specialized syscalls
add: [ ]
add: []
# -- Whether the root filesystem is mounted in read-only mode
readOnlyRootFilesystem: true
# -- Controls [Privilege Escalation](https://kubernetes.io/docs/concepts/security/pod-security-policy/#privilege-escalation) enabling setuid binaries changing the effective user ID
Expand All @@ -156,12 +156,12 @@ controlplane:
# -- The container's process will run with the specified uid
runAsUser: 10001
# Extra environment variables that will be pass onto deployment pods
env: { }
env: {}
# ENV_NAME: value

# "valueFrom" environment variable references that will be added to deployment pods. Name is templated.
# ref: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.19/#envvarsource-v1-core
envValueFrom: { }
envValueFrom: {}
# ENV_NAME:
# configMapKeyRef:
# name: configmap-name
Expand All @@ -171,12 +171,12 @@ controlplane:
# key: value_key

# [Kubernetes Secret Resource](https://kubernetes.io/docs/concepts/configuration/secret/) names to load environment variables from
envSecretNames: [ ]
envSecretNames: []
# - first-secret
# - second-secret

# [Kubernetes ConfigMap Resource](https://kubernetes.io/docs/concepts/configuration/configmap/) names to load environment variables from
envConfigMapNames: [ ]
envConfigMapNames: []
# - first-config-map
# - second-config-map

Expand All @@ -187,7 +187,7 @@ controlplane:
# -- The hostname to be used to precisely map incoming traffic onto the underlying network service
hostname: "edc-control.local"
# -- Additional ingress annotations to add
annotations: { }
annotations: {}
# -- EDC endpoints exposed by this ingress resource
endpoints:
- protocol
Expand All @@ -210,7 +210,7 @@ controlplane:
# -- The hostname to be used to precisely map incoming traffic onto the underlying network service
hostname: "edc-control.intranet"
# -- Additional ingress annotations to add
annotations: { }
annotations: {}
# -- EDC endpoints exposed by this ingress resource
endpoints:
- management
Expand All @@ -234,11 +234,11 @@ controlplane:
# -- [volume](https://kubernetes.io/docs/concepts/storage/volumes/) directories
volumes:
# -- [resource management](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) for the container
resources: { }
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
limits:
cpu: 1.5
memory: 512Mi
Expand Down Expand Up @@ -271,18 +271,18 @@ controlplane:
java.util.logging.SimpleFormatter.format=[%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS] [%4$-7s] %5$s%6$s%n
# [node selector](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector) to constrain pods to nodes
nodeSelector: { }
nodeSelector: {}
# [tolerations](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/) to configure preferred nodes
tolerations: [ ]
tolerations: []
# [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
affinity: { }
affinity: {}

url:
# -- Explicitly declared url for reaching the dsp api (e.g. if ingresses not used)
protocol: ""

# -- Add custom ca certificates to the truststore
customCaCerts: { }
customCaCerts: {}

dataplane:
image:
Expand All @@ -292,7 +292,7 @@ dataplane:
pullPolicy: IfNotPresent
# -- Overrides the image tag whose default is the chart appVersion
tag: ""
initContainers: [ ]
initContainers: []
debug:
enabled: false
port: 1044
Expand Down Expand Up @@ -349,9 +349,9 @@ dataplane:
accessKeyId: ""
secretAccessKey: ""
# -- additional labels for the pod
podLabels: { }
podLabels: {}
# -- additional annotations for the pod
podAnnotations: { }
podAnnotations: {}
# -- The [pod security context](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod) defines privilege and access control settings for a Pod within the deployment
podSecurityContext:
seccompProfile:
Expand All @@ -370,7 +370,7 @@ dataplane:
drop:
- ALL
# -- Specifies which capabilities to add to issue specialized syscalls
add: [ ]
add: []
# -- Whether the root filesystem is mounted in read-only mode
readOnlyRootFilesystem: true
# -- Controls [Privilege Escalation](https://kubernetes.io/docs/concepts/security/pod-security-policy/#privilege-escalation) enabling setuid binaries changing the effective user ID
Expand All @@ -380,12 +380,12 @@ dataplane:
# -- The container's process will run with the specified uid
runAsUser: 10001
# Extra environment variables that will be pass onto deployment pods
env: { }
env: {}
# ENV_NAME: value

# "valueFrom" environment variable references that will be added to deployment pods. Name is templated.
# ref: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.19/#envvarsource-v1-core
envValueFrom: { }
envValueFrom: {}
# ENV_NAME:
# configMapKeyRef:
# name: configmap-name
Expand All @@ -395,12 +395,12 @@ dataplane:
# key: value_key

# [Kubernetes Secret Resource](https://kubernetes.io/docs/concepts/configuration/secret/) names to load environment variables from
envSecretNames: [ ]
envSecretNames: []
# - first-secret
# - second-secret

# [Kubernetes ConfigMap Resource](https://kubernetes.io/docs/concepts/configuration/configmap/) names to load environment variables from
envConfigMapNames: [ ]
envConfigMapNames: []
# - first-config-map
# - second-config-map

Expand All @@ -411,7 +411,7 @@ dataplane:
# -- The hostname to be used to precisely map incoming traffic onto the underlying network service
hostname: "edc-data.local"
# -- Additional ingress annotations to add
annotations: { }
annotations: {}
# -- EDC endpoints exposed by this ingress resource
endpoints:
- public
Expand All @@ -434,11 +434,11 @@ dataplane:
# -- [volume](https://kubernetes.io/docs/concepts/storage/volumes/) directories
volumes:
# -- [resource management](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) for the container
resources: { }
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
limits:
cpu: 1.5
memory: 1024Mi
Expand Down Expand Up @@ -470,11 +470,11 @@ dataplane:
java.util.logging.ConsoleHandler.level=ALL
java.util.logging.SimpleFormatter.format=[%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS] [%4$-7s] %5$s%6$s%n
# [node selector](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector) to constrain pods to nodes
nodeSelector: { }
nodeSelector: {}
# [tolerations](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/) to configure preferred nodes
tolerations: [ ]
tolerations: []
# [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
affinity: { }
affinity: {}

url:
# -- Explicitly declared url for reaching the public api (e.g. if ingresses not used)
Expand Down Expand Up @@ -512,12 +512,12 @@ serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: { }
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
# -- 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)
imagePullSecrets: [ ]
imagePullSecrets: []
# -- Configurations for Helm tests
tests:
# -- Configure the hook-delete-policy for Helm tests
Expand Down
44 changes: 22 additions & 22 deletions charts/tractusx-connector-memory/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@
fullnameOverride: ""
nameOverride: ""
# -- 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)
imagePullSecrets: [ ]
imagePullSecrets: []
# -- To add some custom labels
customLabels: { }
customLabels: {}

participant:
# -- BPN Number
id: "BPNLCHANGEME"

# -- Add custom ca certificates to the truststore
customCaCerts: { }
customCaCerts: {}

runtime:
image:
Expand All @@ -44,7 +44,7 @@ runtime:
pullPolicy: IfNotPresent
# -- Overrides the image tag whose default is the chart appVersion
tag: ""
initContainers: [ ]
initContainers: []
debug:
enabled: false
port: 1044
Expand Down Expand Up @@ -118,11 +118,11 @@ runtime:
service:
# -- [Service type](https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types) to expose the running application on a set of Pods as a network service.
type: ClusterIP
annotations: { }
annotations: {}
# -- additional labels for the pod
podLabels: { }
podLabels: {}
# -- additional annotations for the pod
podAnnotations: { }
podAnnotations: {}
# -- The [pod security context](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod) defines privilege and access control settings for a Pod within the deployment
podSecurityContext:
seccompProfile:
Expand All @@ -141,7 +141,7 @@ runtime:
drop:
- ALL
# -- Specifies which capabilities to add to issue specialized syscalls
add: [ ]
add: []
# -- Whether the root filesystem is mounted in read-only mode
readOnlyRootFilesystem: true
# -- Controls [Privilege Escalation](https://kubernetes.io/docs/concepts/security/pod-security-policy/#privilege-escalation) enabling setuid binaries changing the effective user ID
Expand All @@ -151,12 +151,12 @@ runtime:
# -- The container's process will run with the specified uid
runAsUser: 10001
# Extra environment variables that will be pass onto deployment pods
env: { }
env: {}
# ENV_NAME: value

# "valueFrom" environment variable references that will be added to deployment pods. Name is templated.
# ref: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.19/#envvarsource-v1-core
envValueFrom: { }
envValueFrom: {}
# ENV_NAME:
# configMapKeyRef:
# name: configmap-name
Expand All @@ -166,12 +166,12 @@ runtime:
# key: value_key

# [Kubernetes Secret Resource](https://kubernetes.io/docs/concepts/configuration/secret/) names to load environment variables from
envSecretNames: [ ]
envSecretNames: []
# - first-secret
# - second-secret

# [Kubernetes ConfigMap Resource](https://kubernetes.io/docs/concepts/configuration/configmap/) names to load environment variables from
envConfigMapNames: [ ]
envConfigMapNames: []
# - first-config-map
# - second-config-map

Expand All @@ -182,7 +182,7 @@ runtime:
# -- The hostname to be used to precisely map incoming traffic onto the underlying network service
hostname: "edc-control.local"
# -- Additional ingress annotations to add
annotations: { }
annotations: {}
# -- EDC endpoints exposed by this ingress resource
endpoints:
- protocol
Expand All @@ -206,7 +206,7 @@ runtime:
# -- The hostname to be used to precisely map incoming traffic onto the underlying network service
hostname: "edc-control.intranet"
# -- Additional ingress annotations to add
annotations: { }
annotations: {}
# -- EDC endpoints exposed by this ingress resource
endpoints:
- management
Expand All @@ -226,11 +226,11 @@ runtime:
# -- If preset enables certificate generation via cert-manager cluster-wide issuer
clusterIssuer: ""
# -- declare where to mount [volumes](https://kubernetes.io/docs/concepts/storage/volumes/) into the container
volumeMounts: [ ]
volumeMounts: []
# -- [volume](https://kubernetes.io/docs/concepts/storage/volumes/) directories
volumes: [ ]
volumes: []
# -- [resource management](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) for the container
resources: { }
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
Expand Down Expand Up @@ -262,11 +262,11 @@ runtime:
java.util.logging.ConsoleHandler.level=ALL
java.util.logging.SimpleFormatter.format=[%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS] [%4$-7s] %5$s%6$s%n
# [node selector](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector) to constrain pods to nodes
nodeSelector: { }
nodeSelector: {}
# [tolerations](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/) to configure preferred nodes
tolerations: [ ]
tolerations: []
# [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
affinity: { }
affinity: {}
url:
# -- Explicitly declared url for reaching the dsp api (e.g. if ingresses not used)
protocol: ""
Expand All @@ -286,12 +286,12 @@ serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: { }
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
# -- 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)
imagePullSecrets: [ ]
imagePullSecrets: []
# -- Configurations for Helm tests
tests:
# -- Configure the hook-delete-policy for Helm tests
Expand Down
Loading

0 comments on commit 45a6693

Please sign in to comment.