summary refs log tree commit diff
path: root/nginx/nginx.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'nginx/nginx.yaml')
-rw-r--r--nginx/nginx.yaml51
1 files changed, 0 insertions, 51 deletions
diff --git a/nginx/nginx.yaml b/nginx/nginx.yaml
deleted file mode 100644
index 3bce210ad5..0000000000
--- a/nginx/nginx.yaml
+++ /dev/null
@@ -1,51 +0,0 @@
----
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: nginx
-  labels:
-    app: nginx
-    spec: v4
-spec:
-  replicas: 2
-  template:
-    metadata:
-      labels:
-        app: nginx
-    spec:
-      containers:
-        - image: nginx:1.9.12
-          name: nginx
-          volumeMounts:
-            - name: tazj-in-tls
-              mountPath: /etc/nginx/ssl/tazj.in
-            - name: nginx-dhparam
-              mountPath: /etc/nginx/ssl/dhparam
-            - name: nginx-config
-              mountPath: /etc/nginx/conf
-            - name: nginx-logs
-              mountPath: /var/log/nginx
-          command:
-            - '/usr/sbin/nginx'
-            - '-c'
-            - '/etc/nginx/conf/main.conf'
-          ports:
-            - containerPort: 80
-            - containerPort: 443
-        - image: reactivehub/google-fluentd-catch-all
-          name: google-log-agent
-          volumeMounts:
-            - name: nginx-logs
-              mountPath: /var/log/nginx
-      volumes:
-        - name: tazj-in-tls
-          secret:
-            secretName: tazj.in-tls
-        - name: nginx-dhparam
-          secret:
-            secretName: nginx-dhparam
-        - name: nginx-config
-          secret:
-            secretName: nginx-config
-        - name: nginx-logs
-          emptyDir: {}