30 lines
661 B
YAML
30 lines
661 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{ .Release.Name }}
|
|
labels:
|
|
kiamol: {{ .Values.kiamolChapter }}
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: web-ping
|
|
instance: {{ .Release.Name }}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: web-ping
|
|
instance: {{ .Release.Name }}
|
|
spec:
|
|
containers:
|
|
- name: app
|
|
image: kiamol/ch10-web-ping
|
|
env:
|
|
- name: TARGET
|
|
value: {{ .Values.targetUrl }}
|
|
- name: METHOD
|
|
value: {{ .Values.httpMethod }}
|
|
- name: INTERVAL
|
|
value: {{ .Values.pingIntervalMilliseconds | quote }}
|
|
|
|
|