blob: 2175571ae0975531aade067593ab38f245471516 [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: couchdb
spec:
selector:
matchLabels:
app: couchdb
replicas: 1
template:
metadata:
labels:
app: couchdb
spec:
volumes:
- name: couchdb-pv
persistentVolumeClaim:
claimName: couchdb-pvc
containers:
- name: couchdb
image: fogsyio/couchdb:{{ .Values.external.couchdbVersion }}
imagePullPolicy: {{ .Values.pullPolicy }}
ports:
- containerPort: 5984
volumeMounts:
- mountPath: "/opt/couchdb/data"
name: couchdb-pv