[nginx] Use Deployment resource instead of RC

This commit is contained in:
Vincent Ambo 2016-09-21 01:32:54 +02:00
parent 8bc007c7f3
commit 7e12db2454
No known key found for this signature in database
GPG key ID: 66F505681DB8F43B
2 changed files with 13 additions and 12 deletions

View file

@ -5,11 +5,13 @@ metadata:
name: nginx
labels:
app: nginx
annotations:
acme/certificate: "tazj.in"
spec:
type: LoadBalancer
loadBalancerIP: 104.155.119.229
selector:
lb-target: nginx
app: nginx
ports:
- port: 80
name: http

View file

@ -1,30 +1,26 @@
---
apiVersion: v1
kind: ReplicationController
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: nginx-v4
name: nginx
labels:
app: nginx
version: 1.9.12
spec: v4
spec:
replicas: 2
selector:
app: nginx
rcv: v4
replicas: 1
template:
metadata:
labels:
app: nginx
lb-target: nginx
rcv: v4
spec:
containers:
- image: nginx:1.9.11
- image: nginx:1.9.12
name: nginx
volumeMounts:
- name: tazj-in-tls
mountPath: /etc/nginx/ssl/tazj.in
- name: www-tazj-in-tls
mountPath: /etc/nginx/ssl/www.tazj.in
- name: nginx-dhparam
mountPath: /etc/nginx/ssl/dhparam
- name: nginx-config
@ -47,6 +43,9 @@ spec:
- name: tazj-in-tls
secret:
secretName: tazj-in-tls
- name: www-tazj-in-tls
secret:
secretName: www-tazj-in-tls
- name: nginx-dhparam
secret:
secretName: nginx-dhparam