03-01-2020 10:16 AM
The kubernetes services is not showing the ip address for the demo-app-cicd. The app has been deployed in Drone successfully but the kubernetes does not show the ip address of the app. There is no ping from kubernetes SSH shell and the 10.96.0.1.
03-03-2020 08:39 AM
There is no service defined in the demo-app-cicd.yaml. You may create a service against the pod:
apiVersion: v1
kind: Service
metadata:
name: my-service
spec:
selector:
app: demo-app-cicd
ports:
- protocol: TCP
port: 80
targetPort: 80
The service could be located at: http://10.10.20.21:8001/api/v1/namespaces/default/services/my-service/proxy/#!/pod?namespace=default
05-31-2020 06:07 PM
Same problem here. I was following the "CI/CD Overview" learning lab, which is out of sync from the current lab setup (as of May '20).
Just follow the instructions from the link provided inside the sandbox itself (under CICD tab). I found how to obtain the ip address of the pod, in the "Pod service validation" section.
https://devnetsandbox.cisco.com/sandbox-instructions/CICD_Pipeline/helloworld.html
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide