Skip to content

Commit

Permalink
Merge pull request #931 from eclipse-tractusx/fix/charts/init-keycloa…
Browse files Browse the repository at this point in the history
…k-secrets

fix(charts): services not being able to connect between each other when authenticated
  • Loading branch information
nicoprow authored May 22, 2024
2 parents f4c7c60 + 6c5693b commit 235dd35
Show file tree
Hide file tree
Showing 10 changed files with 3,524 additions and 3,473 deletions.
1 change: 1 addition & 0 deletions .github/workflows/helm-chart-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ jobs:
validate-maintainers: false
chart-repos:
- bitnami=https://charts.bitnami.com/bitnami
helm-extra-args: --timeout 600s
EOF
echo "cat .chart-testing-config.yaml"
cat .chart-testing-config.yaml
Expand Down
1 change: 1 addition & 0 deletions charts/bpdm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),
### Changed

- Default pull policy from 'Always' to 'IfNotPresent'
- Fixes BPDM applications not connecting with each other when authenticated

## [5.0.0] - 2024-05-15

Expand Down
2 changes: 1 addition & 1 deletion charts/bpdm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ apiVersion: v2
name: bpdm
type: application
description: A Helm chart for Kubernetes that deploys the BPDM applications
version: 5.0.1-alpha.0
version: 5.0.1-alpha.1
appVersion: "6.0.0"
home: https://github.com/eclipse-tractusx/bpdm
sources:
Expand Down
12 changes: 7 additions & 5 deletions charts/bpdm/charts/bpdm-cleaning-service-dummy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ securityContext:

service:
type: ClusterIP
port: 8080
port: 80
targetPort: 8084

autoscaling:
Expand All @@ -60,10 +60,10 @@ autoscaling:
resources:
limits:
cpu: 500m
memory: 512Mi
memory: 1Gi
requests:
cpu: 100m
memory: 512Mi
memory: 1Gi

nodeSelector: {}

Expand Down Expand Up @@ -106,8 +106,10 @@ startupProbe:
port: 8084
scheme: HTTP
initialDelaySeconds: 60
failureThreshold: 20
periodSeconds: 15
failureThreshold: 40
periodSeconds: 30
timeoutSeconds: 1
successThreshold: 1


# Used to overwrite the default property values of the application configuration
Expand Down
12 changes: 7 additions & 5 deletions charts/bpdm/charts/bpdm-gate/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ securityContext:

service:
type: ClusterIP
port: 8080
port: 80
targetPort: 8081

autoscaling:
Expand All @@ -64,10 +64,10 @@ ingress:
resources:
limits:
cpu: 1000m
memory: 512Mi
memory: 1Gi
requests:
cpu: 200m
memory: 512Mi
memory: 1Gi

nodeSelector: {}

Expand Down Expand Up @@ -110,8 +110,10 @@ startupProbe:
port: 8081
scheme: HTTP
initialDelaySeconds: 60
failureThreshold: 20
periodSeconds: 15
failureThreshold: 40
periodSeconds: 30
timeoutSeconds: 1
successThreshold: 1


# Used to overwrite the default property values of the application configuration
Expand Down
12 changes: 7 additions & 5 deletions charts/bpdm/charts/bpdm-orchestrator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ securityContext:

service:
type: ClusterIP
port: 8080
port: 80
targetPort: 8085

autoscaling:
Expand All @@ -66,10 +66,10 @@ ingress:
resources:
limits:
cpu: 500m
memory: 512Mi
memory: 1Gi
requests:
cpu: 100m
memory: 512Mi
memory: 1Gi

nodeSelector: {}

Expand Down Expand Up @@ -112,8 +112,10 @@ startupProbe:
port: 8085
scheme: HTTP
initialDelaySeconds: 60
failureThreshold: 20
periodSeconds: 15
failureThreshold: 40
periodSeconds: 30
timeoutSeconds: 1
successThreshold: 1


# Used to overwrite the default property values of the application configuration
Expand Down
10 changes: 6 additions & 4 deletions charts/bpdm/charts/bpdm-pool/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ securityContext:

service:
type: ClusterIP
port: 8080
port: 80
targetPort: 8080

autoscaling:
Expand All @@ -64,10 +64,10 @@ ingress:
resources:
limits:
cpu: 1000m
memory: 512Mi
memory: 1Gi
requests:
cpu: 300m
memory: 512Mi
memory: 1Gi

nodeSelector: {}

Expand Down Expand Up @@ -113,7 +113,9 @@ startupProbe:
scheme: HTTP
initialDelaySeconds: 60
failureThreshold: 40
periodSeconds: 15
periodSeconds: 30
timeoutSeconds: 1
successThreshold: 1

applicationConfig:
bpdm:
Expand Down
Loading

0 comments on commit 235dd35

Please sign in to comment.