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
helm install --name cert-manager --namespace kube-system stable/cert-manager |
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
helm install --name external-dns --namespace kube-system stable/external-dns |
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
server { | |
server_name nginx-test.do.sudermanjr.com ; | |
listen 80; |
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: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
annotations: | |
kubernetes.io/ingress.class: nginx | |
name: test-ingress | |
namespace: kube202 | |
spec: | |
rules: | |
- host: nginx-test.do.sudermanjr.com |
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
kubectl --namespace infra get service | |
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE | |
nginx-ingress-controller LoadBalancer 10.245.33.207 123.456.789.012 80:30867/TCP,443:30941/TCP 20d |
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
helm install stable/nginx-ingress --namespace=infra |
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
kubectl --namespace kube202 get service | |
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE | |
test-service LoadBalancer 10.245.195.107 <pending> 80:32732/TCP 20d |
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: v1 | |
kind: Service | |
metadata: | |
annotations: | |
name: test-service | |
namespace: kube202 | |
spec: | |
ports: | |
- port: 80 | |
protocol: TCP |
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
kubectl --namespace kube202 get service | |
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE | |
test-service NodePort 10.245.195.107 <none> 80:32732/TCP 20d |
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: v1 | |
kind: Service | |
metadata: | |
annotations: | |
name: test-service | |
namespace: kube202 | |
spec: | |
ports: | |
- port: 80 | |
protocol: TCP |