Last active
March 1, 2019 15:56
-
-
Save lukasz-kaniowski/cc6d3daaf98168934186983ebb06c091 to your computer and use it in GitHub Desktop.
Deploying k8s service with internal ELB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2 | |
kind: Deployment | |
metadata: | |
name: nginx-deployment | |
spec: | |
selector: | |
matchLabels: | |
app: nginx | |
replicas: 2 | |
template: | |
metadata: | |
labels: | |
app: nginx | |
spec: | |
containers: | |
- name: nginx | |
image: nginx:1.7.9 | |
ports: | |
- containerPort: 80 | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: nginx-service | |
annotations: | |
service.beta.kubernetes.io/aws-load-balancer-internal: "0.0.0.0/0" | |
## for this to work you need to tag private subnets with `kubernetes.io/role/internal-elb` | |
spec: | |
selector: | |
app: nginx | |
ports: | |
- port: 80 | |
protocol: TCP | |
targetPort: 80 | |
type: LoadBalancer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment