blob: 7591f70a5a4a243ef1fe534f21ae21de6ebf139b [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
#
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ .Release.Name }}-nginx
labels:
name: {{ .Release.Name }}-nginx
{{ include "openwhisk.label_boilerplate" . | indent 4 }}
spec:
replicas: {{ .Values.nginx.replicaCount }}
selector:
matchLabels:
name: {{ .Release.Name }}-nginx
template:
metadata:
labels:
name: {{ .Release.Name }}-nginx
{{ include "openwhisk.label_boilerplate" . | indent 8 }}
spec:
restartPolicy: {{ .Values.nginx.restartPolicy }}
{{- if .Values.affinity.enabled }}
affinity:
{{ include "openwhisk.affinity.edge" . | indent 8 }}
{{ include "openwhisk.affinity.selfAntiAffinity" ( printf "%s-nginx" .Release.Name ) | indent 8 }}
{{- end }}
volumes:
- name: nginx-certs
secret:
secretName: {{ .Release.Name }}-nginx
- name: nginx-conf
configMap:
name: {{ .Release.Name }}-nginx
- name: logs
emptyDir: {}
{{ include "openwhisk.docker.imagePullSecrets" . | indent 6 }}
containers:
- name: nginx
image: "{{- .Values.docker.registry.name -}}{{- .Values.nginx.imageName -}}:{{- .Values.nginx.imageTag -}}"
imagePullPolicy: {{ .Values.nginx.imagePullPolicy | quote }}
ports:
- name: http
containerPort: {{ .Values.nginx.httpPort }}
- name: http-api
containerPort: {{ .Values.nginx.httpsPort }}
volumeMounts:
- name: nginx-conf
mountPath: "/etc/nginx/nginx.conf"
subPath: "nginx.conf"
- name: nginx-certs
mountPath: "/etc/nginx/certs"
- name: logs
mountPath: "/logs"