chore: upgrade build tools and fix ingress

This commit is contained in:
2020-12-05 14:02:04 +01:00
parent 9d6d0667b7
commit 473b3b20d3
4 changed files with 11 additions and 9 deletions
+65
View File
@@ -0,0 +1,65 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: unbound-site
labels:
app: unbound-site
annotations:
kubernetes.io/change-cause: "${TIMESTAMP} Deployed commit id: ${COMMIT}"
spec:
replicas: 2
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
minReadySeconds: 30
selector:
matchLabels:
app: unbound-site
template:
metadata:
labels:
app: unbound-site
spec:
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
podAffinityTerm:
labelSelector:
matchExpressions:
- key: "app"
operator: In
values:
- unbound-site
topologyKey: kubernetes.io/hostname
containers:
- name: unbound-site
readinessProbe:
httpGet:
path: /health
port: 80
initialDelaySeconds: 5
periodSeconds: 5
timeoutSeconds: 5
imagePullPolicy: Always
image: registry.gitlab.com/unboundsoftware/unbound-site:${COMMIT}
ports:
- containerPort: 80
---
apiVersion: v1
kind: Service
metadata:
name: unbound-site
labels:
app: unbound-site
spec:
type: NodePort
selector:
app: unbound-site
ports:
- port: 80
targetPort: 80
+16
View File
@@ -0,0 +1,16 @@
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
name: unbound-site-ingress
annotations:
kubernetes.io/ingress.class: "nginx"
ingress.kubernetes.io/enable-cors: "true"
spec:
rules:
- host: "local-unbound.unbound.se"
http:
paths:
- path: /
backend:
serviceName: unbound-site
servicePort: 80
+23
View File
@@ -0,0 +1,23 @@
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
name: unbound-site-ingress
annotations:
kubernetes.io/ingress.class: "nginx"
ingress.kubernetes.io/enable-cors: "true"
spec:
rules:
- host: "unbound.se"
http:
paths:
- path: /
backend:
serviceName: unbound-site
servicePort: 80
- host: "www.unbound.se"
http:
paths:
- path: /
backend:
serviceName: unbound-site
servicePort: 80