Skip to content

Instantly share code, notes, and snippets.

@keithballdotnet
Created June 8, 2016 14:31
Show Gist options
  • Save keithballdotnet/e1521f7803300d5b16481888ab21effd to your computer and use it in GitHub Desktop.
Save keithballdotnet/e1521f7803300d5b16481888ab21effd to your computer and use it in GitHub Desktop.
my stuff
Service:
apiVersion: v1
kind: Service
metadata:
name: authorization
labels:
app: authorization
spec:
type: LoadBalancer
ports:
- port: 8001
selector:
app: authorization
Controller:
apiVersion: v1
kind: ReplicationController
metadata:
labels:
name: authorization
name: authorization
spec:
replicas: 3
selector:
name: authorization
template:
metadata:
labels:
name: authorization
spec:
containers:
- resources:
image: inflatablewoman/authorization
name: authorization
ports:
- containerPort: 8001
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment