You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
2.7 KiB
Smarty
133 lines
2.7 KiB
Smarty
1 year ago
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: {{.Name}}
|
||
|
namespace: {{.Namespace}}
|
||
|
labels:
|
||
|
app: {{.Name}}
|
||
|
spec:
|
||
|
replicas: {{.Replicas}}
|
||
|
revisionHistoryLimit: {{.Revisions}}
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: {{.Name}}
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: {{.Name}}
|
||
|
spec:{{if .ServiceAccount}}
|
||
|
serviceAccountName: {{.ServiceAccount}}{{end}}
|
||
|
containers:
|
||
|
- name: {{.Name}}
|
||
|
image: {{.Image}}
|
||
|
{{if .ImagePullPolicy}}imagePullPolicy: {{.ImagePullPolicy}}
|
||
|
{{end}}ports:
|
||
|
- containerPort: {{.Port}}
|
||
|
readinessProbe:
|
||
|
tcpSocket:
|
||
|
port: {{.Port}}
|
||
|
initialDelaySeconds: 5
|
||
|
periodSeconds: 10
|
||
|
livenessProbe:
|
||
|
tcpSocket:
|
||
|
port: {{.Port}}
|
||
|
initialDelaySeconds: 15
|
||
|
periodSeconds: 20
|
||
|
resources:
|
||
|
requests:
|
||
|
cpu: {{.RequestCpu}}m
|
||
|
memory: {{.RequestMem}}Mi
|
||
|
limits:
|
||
|
cpu: {{.LimitCpu}}m
|
||
|
memory: {{.LimitMem}}Mi
|
||
|
volumeMounts:
|
||
|
- name: timezone
|
||
|
mountPath: /etc/localtime
|
||
|
{{if .Secret}}imagePullSecrets:
|
||
|
- name: {{.Secret}}
|
||
|
{{end}}volumes:
|
||
|
- name: timezone
|
||
|
hostPath:
|
||
|
path: /usr/share/zoneinfo/Asia/Shanghai
|
||
|
|
||
|
---
|
||
|
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: {{.Name}}-svc
|
||
|
namespace: {{.Namespace}}
|
||
|
spec:
|
||
|
ports:
|
||
|
{{if .UseNodePort}}- nodePort: {{.NodePort}}
|
||
|
port: {{.Port}}
|
||
|
protocol: TCP
|
||
|
targetPort: {{.TargetPort}}
|
||
|
type: NodePort{{else}}- port: {{.Port}}
|
||
|
targetPort: {{.TargetPort}}{{end}}
|
||
|
selector:
|
||
|
app: {{.Name}}
|
||
|
|
||
|
---
|
||
|
|
||
|
apiVersion: monitoring.coreos.com/v1
|
||
|
kind: ServiceMonitor
|
||
|
metadata:
|
||
|
name: {{.Name}}
|
||
|
labels:
|
||
|
serviceMonitor: prometheus
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: {{.Name}}-svc
|
||
|
endpoints:
|
||
|
- port: prometheus
|
||
|
|
||
|
---
|
||
|
|
||
|
apiVersion: autoscaling/v2
|
||
|
kind: HorizontalPodAutoscaler
|
||
|
metadata:
|
||
|
name: {{.Name}}-hpa-c
|
||
|
namespace: {{.Namespace}}
|
||
|
labels:
|
||
|
app: {{.Name}}-hpa-c
|
||
|
spec:
|
||
|
scaleTargetRef:
|
||
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
name: {{.Name}}
|
||
|
minReplicas: {{.MinReplicas}}
|
||
|
maxReplicas: {{.MaxReplicas}}
|
||
|
metrics:
|
||
|
- type: Resource
|
||
|
resource:
|
||
|
name: cpu
|
||
|
target:
|
||
|
type: Utilization
|
||
|
averageUtilization: 80
|
||
|
|
||
|
---
|
||
|
|
||
|
apiVersion: autoscaling/v2
|
||
|
kind: HorizontalPodAutoscaler
|
||
|
metadata:
|
||
|
name: {{.Name}}-hpa-m
|
||
|
namespace: {{.Namespace}}
|
||
|
labels:
|
||
|
app: {{.Name}}-hpa-m
|
||
|
spec:
|
||
|
scaleTargetRef:
|
||
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
name: {{.Name}}
|
||
|
minReplicas: {{.MinReplicas}}
|
||
|
maxReplicas: {{.MaxReplicas}}
|
||
|
metrics:
|
||
|
- type: Resource
|
||
|
resource:
|
||
|
name: memory
|
||
|
target:
|
||
|
type: Utilization
|
||
|
averageUtilization: 80
|