You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
user@workstation:~/bitnami/intel-training-1$ helm install --name example copter --set service.type=NodePort
NAME: example
LAST DEPLOYED: Thu Sep 13 15:21:08 2018
NAMESPACE: default
STATUS: DEPLOYED
RESOURCES:
==> v1/Service
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
example-copter NodePort 10.110.8.194 <none> 5763:31220/UDP 0s
==> v1beta2/Deployment
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
example-copter 1 0 0 0 0s
NOTES:
1. Get the application URL by running these commands:
export NODE_PORT=$(kubectl get --namespace default -o jsonpath="{.spec.ports[0].nodePort}" services example-copter)
export NODE_IP=$(kubectl get nodes --namespace default -o jsonpath="{.items[0].status.addresses[0].address}")
echo http://$NODE_IP:$NODE_PORT
user@workstation:~/bitnami/intel-training-1$
user@workstation:~/bitnami/intel-training-1$ helm install --name copter copter --set service.type=NodePort
NAME: copter
LAST DEPLOYED: Thu Sep 13 15:26:55 2018
NAMESPACE: default
STATUS: DEPLOYED
RESOURCES:
==> v1/Service
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
copter NodePort 10.100.221.50 <none> 5763:31567/UDP 0s
==> v1beta2/Deployment
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
copter 1 1 1 0 0s
==> v1/Pod(related)
NAME READY STATUS RESTARTS AGE
copter-74f8bc6fb-xt6n8 0/1 ContainerCreating 0 0s
NOTES:
1. Get the application URL by running these commands:
export NODE_PORT=$(kubectl get --namespace default -o jsonpath="{.spec.ports[0].nodePort}" services copter)
export NODE_IP=$(kubectl get nodes --namespace default -o jsonpath="{.items[0].status.addresses[0].address}")
echo http://$NODE_IP:$NODE_PORT
user@workstation:~/bitnami/intel-training-1$