Skip to content

Instantly share code, notes, and snippets.

@victorsteven
Created September 9, 2019 15:23
Show Gist options
  • Save victorsteven/4ef050c8e1bae1ff1e179cadeebfe98c to your computer and use it in GitHub Desktop.
Save victorsteven/4ef050c8e1bae1ff1e179cadeebfe98c to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment # Type of the kubernetes resource
metadata:
name: fullstack-app-postgres # Name of the Kubernetes resource
labels:
app: fullstack-app-postgres
spec:
replicas: 1 # Number of pods to run at any given time
selector:
matchLabels:
app: fullstack-app-postgres # This deployment applies to any Pods matching the specified label
template: # This deployment will create a set of pods using the configurations in this template
metadata:
labels: # The labels that will be applied to all of the pods in this deployment
app: fullstack-app-postgres
spec: # Spec for the container which will run in the Pod
containers:
- name: fullstack-app-postgres
image: victorsteven/fullstack:1.3.2 # The image we are getting from dockerhub
imagePullPolicy: IfNotPresent # If we have not pulled it before, get it from dockerhub
ports:
- name: http
containerPort: 8080 # Should match the port number that the Go application listens on
envFrom:
- secretRef:
name: postgres-secret # Name of the secret environmental variable file to load
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment