k8s/dev/deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
name: vocabulary
name: vocabulary
spec:
progressDeadlineSeconds: 2147483647
revisionHistoryLimit: 0
selector:
matchLabels:
name: vocabulary
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
type: RollingUpdate
template:
metadata:
annotations:
chaos.alpha.kubernetes.io/enabled: "true"
labels:
name: vocabulary
spec:
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: type
operator: In
values:
- apps
containers:
- args:
- start
env:
- name: PORT
value: "4100"
- name: NODE_ENV
value: dev
- name: NODE_PATH
value: app/src
- name: MONGO_URI
valueFrom:
secretKeyRef:
key: VOCABULARY_MONGO_URI
name: dbsecrets
- name: GATEWAY_URL
valueFrom:
secretKeyRef:
key: GATEWAY_URL
name: mssecrets
- name: MICROSERVICE_TOKEN
valueFrom:
secretKeyRef:
key: MICROSERVICE_TOKEN
name: mssecrets
- name: CARTODB_USER
valueFrom:
secretKeyRef:
key: CARTODB_USER
name: mssecrets
- name: FASTLY_ENABLED
valueFrom:
secretKeyRef:
key: FASTLY_ENABLED
name: mssecrets
- name: FASTLY_APIKEY
valueFrom:
secretKeyRef:
key: FASTLY_APIKEY
name: mssecrets
optional: true
- name: FASTLY_SERVICEID
valueFrom:
secretKeyRef:
key: FASTLY_SERVICEID
name: mssecrets
optional: true
- name: AWS_REGION
valueFrom:
secretKeyRef:
key: AWS_REGION
name: mssecrets
- name: REQUIRE_API_KEY
valueFrom:
secretKeyRef:
key: REQUIRE_API_KEY
name: mssecrets
image: gfwdockerhub/vocabulary
imagePullPolicy: Always
livenessProbe:
failureThreshold: 3
httpGet:
path: /healthcheck
port: 4100
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 15
successThreshold: 1
timeoutSeconds: 5
name: vocabulary
ports:
- containerPort: 4100
protocol: TCP
readinessProbe:
failureThreshold: 3
httpGet:
path: /healthcheck
port: 4100
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 15
successThreshold: 1
timeoutSeconds: 5
resources:
limits:
cpu: "1"
memory: 512M
requests:
cpu: 250m
memory: 256M
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
dnsPolicy: ClusterFirst
imagePullSecrets:
- name: regcred
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
terminationGracePeriodSeconds: 30