Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(charts): services not being able to connect between each other when authenticated #931

Merged
merged 1 commit into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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