Added credentials

This commit is contained in:
Marcus Noble 2020-06-07 16:00:37 +01:00
parent 15afc432d2
commit 2143baff65
1 changed files with 20 additions and 1 deletions

View File

@ -4,6 +4,17 @@ metadata:
name: twitter-profile-pic
---
apiVersion: v1
kind: Secret
metadata:
name: twitter-profile-pic
namespace: twitter-profile-pic
annotations:
kube-1password: d2rt56v47q2wij47qgj27umrky
kube-1password/vault: Kubernetes
kube-1password/secret-text-key: .env
type: Opaque
---
apiVersion: v1
kind: Service
metadata:
name: twitter-profile-pic
@ -23,7 +34,7 @@ metadata:
name: twitter-profile-pic
namespace: twitter-profile-pic
spec:
replicas: 2
replicas: 1
selector:
matchLabels:
app: twitter-profile-pic
@ -44,6 +55,14 @@ spec:
memory: 250Mi
requests:
memory: 250Mi
volumeMounts:
- name: dotenv
mountPath: /app/.env
subPath: .env
volumes:
- name: dotenv
secret:
secretName: twitter-profile-pic
---
apiVersion: extensions/v1beta1
kind: Ingress