Reputation: 1
i used this https://cloud.google.com/kubernetes-engine/docs/tutorials/guestbook?hl=de to bulid a Guestbook with Google Kubernetes Engine. I applyed this an everything works. Now i wanted to change the index.html for a better Look. How can i upload or update the changed file?
I tried to apply the frontend service again with this
kubectl apply -f frontend-service.yaml
But it did not work.
Upvotes: 0
Views: 61
Reputation: 2130
You will have to rebuild the containers if you make changes to the source code. I suggest you:
Upvotes: 1