openstack-helm-infra/nfs-provisioner/templates/service.yaml
Gage Hugo 7ce571ab54 Update NFS Provisioner image version
This change updates the nfs-provisioner to a newer image version.
Also nfs-provisioner 2.3.0 requires more ports.

Change-Id: I5ac00d6de95bc27fec6b935395a4c717e146f857
2023-02-16 03:35:14 +03:00

59 lines
1.6 KiB
YAML

{{/*
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/}}
{{- if .Values.manifests.service }}
{{- $envAll := . }}
---
kind: Service
apiVersion: v1
metadata:
name: {{ tuple "nfs" "internal" . | include "helm-toolkit.endpoints.hostname_short_endpoint_lookup" }}
labels:
{{ tuple $envAll "nfs" "provisioner" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }}
spec:
ports:
- name: nfs
port: 2049
- name: nfs-udp
port: 2049
protocol: UDP
- name: mountd
port: 20048
- name: mountd-udp
port: 20048
protocol: UDP
- name: rpcbind
port: 111
- name: rpcbind-udp
port: 111
protocol: UDP
- name: port-662
port: 662
- name: port-662-udp
port: 662
protocol: UDP
- name: port-875
port: 875
- name: port-875-udp
port: 875
protocol: UDP
- name: port-32803
port: 32803
- name: port-32803-udp
port: 32803
protocol: UDP
selector:
{{ tuple $envAll "nfs" "provisioner" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }}
{{- end }}