about summary refs log tree commit diff
path: root/gogs/gogs-rc.yaml
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-01-03T15·31+0100
committerVincent Ambo <tazjin@gmail.com>2018-01-03T22·02+0100
commit9464a1dee43740054a1cb01e00930906e75758b8 (patch)
tree04bea681c101ec1dcd81df600f9ad9ef20a08873 /gogs/gogs-rc.yaml
parent51cbf1e92a8a0c8c45bd911c0f82e1313fd3761e (diff)
chore: Clean up old Kubernetes configuration
Diffstat (limited to 'gogs/gogs-rc.yaml')
-rw-r--r--gogs/gogs-rc.yaml28
1 files changed, 0 insertions, 28 deletions
diff --git a/gogs/gogs-rc.yaml b/gogs/gogs-rc.yaml
deleted file mode 100644
index cf23de863cde..000000000000
--- a/gogs/gogs-rc.yaml
+++ /dev/null
@@ -1,28 +0,0 @@
-apiVersion: v1
-kind: ReplicationController
-metadata:
-  name: gogs
-spec:
-  replicas: 1
-  selector:
-    app: gogs
-  template:
-    metadata:
-      labels:
-        app: gogs
-    spec:
-      containers:
-        - image: gogs/gogs
-          imagePullPolicy: Always
-          name: gogs
-          ports:
-            - containerPort: 22
-            - containerPort: 3000
-          volumeMounts:
-            - name: gogs-storage
-              mountPath: /data
-      volumes:
-        - name: gogs-storage
-          gcePersistentDisk:
-            pdName: gogs-storage
-            fsType: ext4