init
This commit is contained in:
commit
f8b377c347
10 changed files with 1147 additions and 0 deletions
32
helm-chart/templates/deployment.yaml
Normal file
32
helm-chart/templates/deployment.yaml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
labels:
|
||||
service: {{ .Values.name }}
|
||||
name: {{ .Values.name }}
|
||||
namespace: {{ .Values.namespace | default .Values.name }}
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
service: {{ .Values.name }}
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
service: {{ .Values.name }}
|
||||
spec:
|
||||
containers:
|
||||
- image: {{ .Values.image.repository }}/{{ .Values.name }}:{{ .Values.image.tag }}
|
||||
name: {{ .Values.name }}
|
||||
ports:
|
||||
- containerPort: {{ .Values.port }}
|
||||
protocol: TCP
|
||||
resources:
|
||||
requests:
|
||||
cpu: {{ .Values.cpuRequest }}
|
||||
memory: {{ .Values.memoryRequest }}
|
||||
limits:
|
||||
cpu: {{ .Values.cpuLimit }}
|
||||
memory: {{ .Values.memoryLimit }}
|
||||
imagePullSecrets:
|
||||
- name: {{ .Values.imagePullSecret }}
|
||||
25
helm-chart/templates/hpa.yaml
Normal file
25
helm-chart/templates/hpa.yaml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
apiVersion: autoscaling/v2
|
||||
kind: HorizontalPodAutoscaler
|
||||
metadata:
|
||||
name: {{ .Values.name }}
|
||||
namespace: {{ .Values.namespace | default .Values.name }}
|
||||
spec:
|
||||
scaleTargetRef:
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
name: {{ .Values.name }}
|
||||
minReplicas: {{ .Values.minReplicas }}
|
||||
maxReplicas: {{ .Values.maxReplicas }}
|
||||
metrics:
|
||||
- type: Resource
|
||||
resource:
|
||||
name: cpu
|
||||
target:
|
||||
type: Utilization
|
||||
averageUtilization: {{ .Values.targetCPUUtilization }}
|
||||
- type: Resource
|
||||
resource:
|
||||
name: memory
|
||||
target:
|
||||
type: Utilization
|
||||
averageUtilization: {{ .Values.targetMemoryUtilization }}
|
||||
26
helm-chart/templates/ingress.yaml
Normal file
26
helm-chart/templates/ingress.yaml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
labels:
|
||||
service: {{ .Values.name }}
|
||||
name: {{ .Values.name }}
|
||||
namespace: {{ .Values.namespace }}
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||
spec:
|
||||
rules:
|
||||
- host: {{ .Values.name }}.{{ .Values.domain }}
|
||||
http:
|
||||
paths:
|
||||
- backend:
|
||||
service:
|
||||
name: {{ .Values.name }}
|
||||
port:
|
||||
number: {{ .Values.port }}
|
||||
path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- hosts:
|
||||
- {{ .Values.name }}.{{ .Values.domain }}
|
||||
secretName: {{ .Values.name }}-cert-tls
|
||||
|
||||
4
helm-chart/templates/namespace.yaml
Normal file
4
helm-chart/templates/namespace.yaml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
||||
name: {{ .Values.namespace | default .Values.name }}
|
||||
14
helm-chart/templates/service.yaml
Normal file
14
helm-chart/templates/service.yaml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
labels:
|
||||
service: {{ .Values.name }}
|
||||
name: {{ .Values.name }}
|
||||
namespace: {{ .Values.namespace | default .Values.name }}
|
||||
spec:
|
||||
ports:
|
||||
- name: "{{ .Values.port }}"
|
||||
port: {{ .Values.port }}
|
||||
targetPort: {{ .Values.port }}
|
||||
selector:
|
||||
service: {{ .Values.name }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue