webserver-networkpolicy.yaml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing,
  12. # software distributed under the License is distributed on an
  13. # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. # KIND, either express or implied. See the License for the
  15. # specific language governing permissions and limitations
  16. # under the License.
  17. ################################
  18. ## Airflow Webserver NetworkPolicy
  19. #################################
  20. {{- if .Values.networkPolicies.enabled }}
  21. {{- $from := or .Values.webserver.networkPolicy.ingress.from .Values.webserver.extraNetworkPolicies }}
  22. apiVersion: networking.k8s.io/v1
  23. kind: NetworkPolicy
  24. metadata:
  25. name: {{ .Release.Name }}-webserver-policy
  26. labels:
  27. tier: airflow
  28. component: airflow-webserver-policy
  29. release: {{ .Release.Name }}
  30. chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
  31. heritage: {{ .Release.Service }}
  32. {{- with .Values.labels }}
  33. {{ toYaml . | indent 4 }}
  34. {{- end }}
  35. spec:
  36. podSelector:
  37. matchLabels:
  38. tier: airflow
  39. component: webserver
  40. release: {{ .Release.Name }}
  41. policyTypes:
  42. - Ingress
  43. {{- if $from }}
  44. ingress:
  45. - from:
  46. {{ toYaml $from | indent 6 }}
  47. ports:
  48. {{ range .Values.webserver.networkPolicy.ingress.ports }}
  49. -
  50. {{- range $key, $val := . }}
  51. {{ $key }}: {{ tpl (toString $val) $ }}
  52. {{- end }}
  53. {{- end }}
  54. {{- end }}
  55. {{- end }}