Skip to content

Releases: clementmouchet/op-connect-secret-driver

Release v1.0.1

29 Sep 00:00
Immutable release. Only release title and notes can be modified.
e9106ea

Choose a tag to compare

What's Changed

📦 Tidy up

  • Fixed docker CMD
  • Fix: workflow does not contain permissions

Installation

You can install the plugin directly from Docker Hub with the following command:

Choose the version based on your platform:

linux/amd64

docker plugin install clementmouchet/op-connect-secret-driver:v1.0.1-linux-amd64 \
  --grant-all-permissions \
  --alias op-connect-secret-driver:v1.0.1 \
  --disable

linux/arm64

docker plugin install clementmouchet/op-connect-secret-driver:v1.0.1-linux-arm64 \
  --grant-all-permissions \
  --alias op-connect-secret-driver:v1.0.1 \
  --disable

After installation, set the environment variables and enable the plugin:

docker plugin set op-connect-secret-driver:v1.0.1 OP_CONNECT_HOST="$OP_CONNECT_HOST"
docker plugin set op-connect-secret-driver:v1.0.1 OP_CONNECT_TOKEN="$OP_CONNECT_TOKEN"
docker plugin enable op-connect-secret-driver:v1.0.1

Release v1.0.0

28 Sep 22:27
Immutable release. Only release title and notes can be modified.

Choose a tag to compare

It's all new

Initial release of the plugin.

  • Support for configurations via label: vault + item + field or just ref using a 1Password secret reference, see README
  • Builds for linux/amd64 and linux/arm64

Installation

You can install the plugin directly from Docker Hub with the following command:

Choose the version based on your platform:

For linux/amd64

docker plugin install clementmouchet/op-connect-secret-driver:v1.0.0-linux-amd64 \
  --grant-all-permissions \
  --alias op-connect-secret-driver:v1.0.0 \
  --disable

For linux/arm64

docker plugin install clementmouchet/op-connect-secret-driver:v1.0.0-linux-arm64 \
  --grant-all-permissions \
  --alias op-connect-secret-driver:v1.0.0 \
  --disable

After installation, set the environment variables and enable the plugin:

docker plugin set op-connect-secret-driver:v1.0.0 OP_CONNECT_HOST="$OP_CONNECT_HOST"
docker plugin set op-connect-secret-driver:v1.0.0 OP_CONNECT_TOKEN="$OP_CONNECT_TOKEN"
docker plugin enable op-connect-secret-driver:v1.0.0