Skip to content

Commit f266ec1

Browse files
Merge pull request #143 from EcovadisCode/update-chart-versions-clean-values
Bump chart versions and cleanup and move values in values.yaml files
2 parents 7c269a7 + 2260d4d commit f266ec1

File tree

8 files changed

+35
-28
lines changed

8 files changed

+35
-28
lines changed

charts/app-reverse-proxy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ apiVersion: v2
22
name: charts-app-reverse-proxy
33
description: EcoVadis Helm chart for application exposed with nginx reverse proxy
44
type: application
5-
version: 2.8.1
5+
version: 2.9.0
66
appVersion: 1.16.0
77
dependencies:
88
- name: charts-core
9-
version: 2.3.0
9+
version: 2.4.2
1010
repository: "https://ecovadiscode.github.io/charts/"

charts/app-reverse-proxy/values.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ global:
4343
annotations: {}
4444
name: ""
4545

46+
automountServiceAccountToken: false
47+
4648
podSecurityContext:
4749
runAsNonRoot: true
4850
runAsUser: 1000
@@ -101,12 +103,13 @@ global:
101103

102104
#Additional Network Polices configuration
103105
elasticNetworkPolicyEnabled: true
104-
redisNetworkPolicyEnabled: false
106+
mongodbNetworkPolicyEnabled: false
107+
eventHubNetworkPolicyEnabled: false
108+
lnmElasticNetworkPolicyEnabled: false
109+
redisNetworkPolicyEnabled: true
105110
redisCidr: "#{redisCidr}#"
106111
sqlNetworkPolicyEnabled: true
107112
servicebusNetworkPolicyEnabled: true
108-
mongodbNetworkPolicyEnabled: false
109-
automountServiceAccountToken: false
110113

111114
appConfigFilesEnabled: true
112115
appConfigFiles:

charts/cron-job/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
description: EcoVadis Helm chart for K8s Cron Job
33
name: charts-cron-job
44
type: application
5-
version: 2.6.1
5+
version: 2.7.0
66
dependencies:
77
- name: charts-core
8-
version: 2.3.0
8+
version: 2.4.2
99
repository: "https://ecovadiscode.github.io/charts/"

charts/cron-job/values.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ global:
2121
# The name of the service account to use.
2222
# If not set and create is true, a name is generated using the fullname template
2323
name: ""
24+
25+
automountServiceAccountToken: false
2426

2527
ttlSecondsAfterFinished: 86400 # Job and all pods will be deleted after this amount of time in second, regardless its result (succeeded or failed)
2628
activeDeadlineSeconds: 10800 # Job completion timeout
@@ -31,11 +33,6 @@ global:
3133
successfulJobsHistoryLimit: 1 # The number of successful finished jobs to retain
3234
failedJobsHistoryLimit: 1 # The number of failed finished jobs to retain
3335

34-
redisNetworkPolicyEnabled: true
35-
redisCidr: "#{redisCidr}#"
36-
sqlNetworkPolicyEnabled: true
37-
servicebusNetworkPolicyEnabled: true
38-
3936
secEnvVarsEnabled: true
4037
secEnvVars: {}
4138
#APP_INSIGHT_KEY: TEST
@@ -70,8 +67,13 @@ global:
7067

7168
#Additional Network Polices configuration
7269
elasticNetworkPolicyEnabled: true
73-
74-
automountServiceAccountToken: false
70+
mongodbNetworkPolicyEnabled: false
71+
eventHubNetworkPolicyEnabled: false
72+
lnmElasticNetworkPolicyEnabled: false
73+
redisNetworkPolicyEnabled: true
74+
redisCidr: "#{redisCidr}#"
75+
sqlNetworkPolicyEnabled: true
76+
servicebusNetworkPolicyEnabled: true
7577

7678
resources: {}
7779
# limits:

charts/dotnet-core/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
description: EcoVadis Helm chart for .Net Core app
33
name: charts-dotnet-core
44
type: application
5+
version: 4.1.0
56
dependencies:
67
- name: charts-core
7-
version: 2.3.0
8-
repository: "https://ecovadiscode.github.io/charts/"
9-
version: 4.0.1
8+
version: 2.4.2
9+
repository: "https://ecovadiscode.github.io/charts/"

charts/dotnet-core/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ global:
9292
resources: []
9393
verbs: []
9494

95+
automountServiceAccountToken: false
96+
9597
podAnnotations: {}
9698

9799
podSecurityContext:
@@ -121,10 +123,8 @@ global:
121123

122124
#Additional Network Polices configuration
123125
elasticNetworkPolicyEnabled: true
124-
125126
mongodbNetworkPolicyEnabled: false
126127
eventHubNetworkPolicyEnabled: false
127-
automountServiceAccountToken: false
128128
lnmElasticNetworkPolicyEnabled: false
129129
redisNetworkPolicyEnabled: true
130130
redisCidr: "#{redisCidr}#"

charts/job/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
description: EcoVadis Helm chart for K8s Event driven Job
33
name: charts-job
44
type: application
5-
version: 2.6.1
5+
version: 2.7.0
66
dependencies:
77
- name: charts-core
8-
version: 2.3.0
8+
version: 2.4.2
99
repository: "https://ecovadiscode.github.io/charts/"

charts/job/values.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,13 @@ global:
2525
# If not set and create is true, a name is generated using the fullname template
2626
name: ""
2727

28+
automountServiceAccountToken: false
29+
2830
activeDeadlineSeconds: 10800 # Limit of time in second during which job can create new pods.
2931
backoffLimit: 2 # Number of retries tu run a job. One retry is equal to one pod creation.
3032
parallelism: 1 # Number of concurrent PODS to run at the same time for single job (https://kubernetes.io/docs/concepts/workloads/controllers/job/#parallel-jobs)
3133
completions: 1 # Number of successful completions required before marking the job as completed. This will be ignored if parallelism is set to more than 1.
3234

33-
redisNetworkPolicyEnabled: true
34-
redisCidr: "#{redisCidr}#"
35-
sqlNetworkPolicyEnabled: true
36-
servicebusNetworkPolicyEnabled: true
37-
3835
secEnvVarsEnabled: true
3936
secEnvVars: {}
4037
#APP_INSIGHT_KEY: TEST
@@ -69,8 +66,13 @@ global:
6966

7067
#Additional Network Polices configuration
7168
elasticNetworkPolicyEnabled: true
72-
73-
automountServiceAccountToken: false
69+
mongodbNetworkPolicyEnabled: false
70+
eventHubNetworkPolicyEnabled: false
71+
lnmElasticNetworkPolicyEnabled: false
72+
redisNetworkPolicyEnabled: true
73+
redisCidr: "#{redisCidr}#"
74+
sqlNetworkPolicyEnabled: true
75+
servicebusNetworkPolicyEnabled: true
7476

7577
resources: {}
7678
# limits:

0 commit comments

Comments
 (0)