Skip to content
Open
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
4 changes: 2 additions & 2 deletions charts/delta-sharing-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.3
version: 0.0.4

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand All @@ -29,7 +29,7 @@ appVersion: 1

dependencies:
- name: library-chart
version: 1.3.0
version: 1.5.19
repository: https://inseefrlab.github.io/helm-charts-interactive-services


Expand Down

This file was deleted.

8 changes: 4 additions & 4 deletions charts/delta-sharing-server/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ spec:
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
volumes:
- name: config-coresite
configMap:
name: {{ include "library-chart.configMapNameCoreSite" . }}
- name: secret-coresite
secret:
secretName: {{ include "library-chart.secretNameCoreSite" . }}
- name: config-server
configMap:
name: {{ include "library-chart.fullname" . }}
Expand All @@ -47,7 +47,7 @@ spec:
volumeMounts:
- mountPath: /opt/docker/conf/core-site.xml
subPath: core-site.xml
name: config-coresite
name: secret-coresite
- mountPath: /opt/docker/conf/delta-sharing-server-config.yaml
subPath: delta-sharing-server-config.yaml
name: config-server
Expand Down
18 changes: 1 addition & 17 deletions charts/delta-sharing-server/templates/networkpolicy-ingress.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1 @@
{{- if .Values.security.networkPolicy.enabled -}}
{{- if .Values.ingress.enabled -}}
kind: NetworkPolicy
apiVersion: networking.k8s.io/v1
metadata:
name: {{ include "library-chart.fullname" . }}-2
spec:
podSelector:
matchLabels:
{{- include "library-chart.selectorLabels" . | nindent 6 }}
ingress:
- from:
{{- toYaml .Values.security.networkPolicy.from | nindent 4 }}
policyTypes:
- Ingress
{{- end }}
{{- end }}
{{ include "library-chart.networkPolicyIngress" . }}
16 changes: 1 addition & 15 deletions charts/delta-sharing-server/templates/networkpolicy.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1 @@
{{- if .Values.security.networkPolicy.enabled -}}
kind: NetworkPolicy
apiVersion: networking.k8s.io/v1
metadata:
name: {{ include "library-chart.fullname" . }}
spec:
podSelector:
matchLabels:
{{- include "library-chart.selectorLabels" . | nindent 6 }}
ingress:
- from:
- podSelector: {}
policyTypes:
- Ingress
{{- end }}
{{ include "library-chart.networkPolicy" . }}
1 change: 1 addition & 0 deletions charts/delta-sharing-server/templates/secret-coresite.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{ include "library-chart.secretCoreSite" . }}
4 changes: 3 additions & 1 deletion charts/delta-sharing-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ ingress:
# - secretName: chart-example-tls
# hosts:
# - chart-example.local

useCertManager: false
certManagerClusterIssuer: ""

readiness:
enabled: "true"

Expand Down