Last active
October 14, 2018 13:59
-
-
Save bubeamos/ddf28c77fc0f0b11fdeb60d0678f486f to your computer and use it in GitHub Desktop.
Revisions
-
bubeamos revised this gist
Oct 14, 2018 . 1 changed file with 5 additions and 11 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,18 +1,12 @@ kind: Service apiVersion: v1 metadata: name: my-mediaiq-service spec: ports: - port: 8765 targetPort: 9376 selector: app: source-ip type: LoadBalancer externalTrafficPolicy: Local -
bubeamos revised this gist
Oct 14, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -9,7 +9,7 @@ spec: - protocol: TCP port: 80 targetPort: 9376 clusterIP: 10.100.0.70 loadBalancerIP: a28a70911cfa611e89e65020a2cc9e06-1891411889.us-west-2.elb.amazonaws.com type: LoadBalancer status: -
bubeamos revised this gist
Oct 14, 2018 . 1 changed file with 16 additions and 15 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,17 +1,18 @@ kind: Service apiVersion: v1 metadata: name: my-lb-service spec: selector: app: source-ip ports: - protocol: TCP port: 80 targetPort: 9376 clusterIP: 10.100.0.1 loadBalancerIP: a28a70911cfa611e89e65020a2cc9e06-1891411889.us-west-2.elb.amazonaws.com type: LoadBalancer status: loadBalancer: ingress: - ip: a28a70911cfa611e89e65020a2cc9e06-1891411889.us-west-2.elb.amazonaws.com -
bubeamos created this gist
Oct 14, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ apiVersion: extensions/v1beta1 kind: Ingress metadata: name: my-ingress annotations: kubernetes.io/ingress.class: "nginx" spec: backend: serviceName: default-http-backend servicePort: 80 rules: - host: a28a70911cfa611e89e65020a2cc9e06-1891411889.us-west-2.elb.amazonaws.com http: paths: - backend: serviceName: source-ip servicePort: 80