Announcing Vault Secrets
Today Drone.io, the leading open source cloud native continuous integration (CI) and continuous delivery (CD) platform, is announcing the official integration with HashiCorp’s Vault secret manager which secures, stores, and tightly controls access to tokens, passwords, certificates, API keys, and other secrets in modern computing. This integration allows you to securely share secrets stored in Vault with your deployment pipelines.
Get Started using Drone.io with Vault
Get started by installing the 0.9 technology preview and by installing the Vault plugin. Once installed, the first step is to create a Vault secrets resource (below). For demonstration purposes, lets store our Docker registry credentials, used to publish images to Dockerhub.
The secret should be visible in the dashboard once successfully created. Note that you can add the X-Drone-Repos
and X-Drone-Events
properties to limit which repositories and pipeline events have access to these secrets.
The next step is to define the external secrets in your .drone.yml
configuration file. In the below example, we expose the username
and password
key values for secret secret/data/docker
.
kind: pipeline name: default steps: - name: publish image: plugins/docker settings: repo: octocat/server tags: latest username: from_secret: docker_username password: from_secret: docker_password --- kind: secret name: docker_username get: path: secret/data/docker name: username --- kind: secret name: docker_password get: path: secret/data/docker name: password
Drone is modern CI/CD. Container-native and available via open source and an enterprise on-prem edition. Try it today.