mmaryo
(Mario)
August 7, 2019, 1:36pm
1
Hello
By following documentation I find this plugin http://plugins.drone.io/mactynow/drone-kubernetes/
But repository is inactive since 2 years https://github.com/honestbee/drone-kubernetes
Is there a better Kubernetes deployment plugin ?
Can you update documentation ?
Best
acim
(Boban Acimovic)
October 21, 2019, 10:47am
2
I was wondering the same, but it seems this project is dead.
jmzoda
(Jean-Marie ZODA)
October 21, 2019, 11:10am
3
Honestly, I tried all the Kubernetes plugins and at the end, I created my image based on this: https://github.com/slayerjain/aws-kops-kubectl-helm
and I put my bash code in the commands section:
It works fine
acim
(Boban Acimovic)
October 24, 2019, 9:25am
4
I used sinlead/drone-kubectl image and kubectl patch to update several images within a deployment at once.
How to deploy new Docker images to your Kubernetes cluster? Of course, there are
many ways and one of the most common ways is to use kubectl set image, for
example:
kubectl set image deployment/nginx-deployment nginx=nginx:1.17.5-alpine
However,...