drone-kubernetes
drone-kubernetes copied to clipboard
A drone plugin to update a deployment on a kubernetes cluster
I am getting some errors with custom commands and direct passage of variable values: ```yaml deploy: image: quay.io/honestbee/drone-kubernetes environment: - PLUGIN_KUBERNETES_CERT="-----BEGIN CERTIFICATE-----example\n-----END CERTIFICATE-----" - PLUGIN_KUBERNETES_TOKEN="something" - PLUGIN_DEPLOYMENT=foo,bar - PLUGIN_CONTAINER=app commands:...
I could maintain it.
If I provide a missing image the deployment is sent to kubernetes, but it fails. Is there a way to detect that it failed?
In a previous step we created a container using the docker plugin. We used a .tags file to version that container. We want to use that same file to determine...
It will be nice if one could update annotations with build number or SHA for example.
Hi, I noticed that there is an issue when trying to deploy with the non-default service account. This should fix this issue.
To authenticate with the plugin, a token is required, but a more secure authentication can be done with client certificate and client key instead of token, using the flags `--client-certificate...
Using drone 1.0-rc with a .drone.yml like this: ```yaml kind: pipeline name: default steps: - name: build-image image: banzaicloud/drone-kaniko settings: registry: registry.example.com repo: registry.example.com/hello-k8s tags: ${DRONE_COMMIT_SHA} username: from_secret: docker-username password:...
I removed the entry point bcs `docker run -it quay.io/honestbee/drone-kubernetes bash` didn't worked. Fixed the user insertion. Added a new flag to skip insecure insert. (If you have valid https...