新增learn-kubernetes(https://github.com/yyong-brs/learn-kubernetes)相关文件
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
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 }}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user