diff --git a/charts/pgadmin/Chart.yaml b/charts/pgadmin/Chart.yaml index dd50b4f7..a24df6a4 100644 --- a/charts/pgadmin/Chart.yaml +++ b/charts/pgadmin/Chart.yaml @@ -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.6.4 +version: 0.6.5 # 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 @@ -29,5 +29,5 @@ appVersion: latest dependencies: - name: library-chart - version: 1.5.18 + version: 1.5.19 repository: https://inseefrlab.github.io/helm-charts-interactive-services diff --git a/charts/pgadmin/templates/service.yaml b/charts/pgadmin/templates/service.yaml index 17d1064c..03aebe84 100644 --- a/charts/pgadmin/templates/service.yaml +++ b/charts/pgadmin/templates/service.yaml @@ -1 +1,15 @@ -{{ include "library-chart.service" . }} \ No newline at end of file +apiVersion: v1 +kind: Service +metadata: + name: {{ include "library-chart.fullname" . }} + labels: + {{- include "library-chart.labels" . | nindent 4 }} +spec: + type: {{ .Values.networking.type }} + ports: + - port: {{ .Values.networking.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "library-chart.selectorLabels" . | nindent 4 }} \ No newline at end of file