Skip to content

Commit

Permalink
Update README.md - clean up all links after transfer to org
Browse files Browse the repository at this point in the history
  • Loading branch information
jessebot authored Sep 19, 2023
1 parent f2b6d8c commit 09c7966
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# ApplicationSet Secret Plugin Generator
<a href="https://github.com/jessebot/argocd-appset-secret-plugin/releases"><img src="https://img.shields.io/github/v/release/jessebot/argocd-appset-secret-plugin?style=plastic&labelColor=blue&color=028A0F&logo=GitHub&logoColor=white"></a>
<a href="https://github.com/small-hack/appset-secret-plugin/releases"><img src="https://img.shields.io/github/v/release/small-hack/appset-secret-plugin?style=plastic&labelColor=blue&color=028A0F&logo=GitHub&logoColor=white"></a>

[argocd-appset-secret-plugin](https://github.com/jessebot/argocd-appset-secret-plugin) is an Argo CD [ApplicationSet Plugin Generator](https://argo-cd.readthedocs.io/en/latest/operator-manual/applicationset/Generators-Plugin/) (_only available in Argo CD `v2.8.0` or newer_) to fetch variables from an existing [Kubernetes Secret](https://kubernetes.io/docs/concepts/configuration/secret/) that is mounted as file in our plugin generator deployment.
[appset-secret-plugin](https://github.com/small-hack/appset-secret-plugin) is an Argo CD [ApplicationSet Plugin Generator](https://argo-cd.readthedocs.io/en/latest/operator-manual/applicationset/Generators-Plugin/) (_only available in Argo CD `v2.8.0` or newer_) to fetch variables from an existing [Kubernetes Secret](https://kubernetes.io/docs/concepts/configuration/secret/) that is mounted as file in our plugin generator deployment.

## Usage
First, [install Argo CD](https://argo-cd.readthedocs.io/en/stable/getting_started/#1-install-argo-cd) on your cluster.

### Install with helm
For helm, see the [`README`](./charts/argocd-appset-secret-plugin/README.md) for full details of the allowed values in [`values.yaml`](./charts/argocd-appset-secret-plugin/values.yaml), but this is the gist for testing:
For helm, see the [`README`](./charts/appset-secret-plugin/README.md) for full details of the allowed values in [`values.yaml`](./charts/appset-secret-plugin/values.yaml), but this is the gist for testing:

```console
helm repo add appset-secret-plugin https://jessebot.github.io/argocd-appset-secret-plugin
helm install my-release-name appset-secret-plugin/argocd-appset-secret-plugin
helm repo add appset-secret-plugin https://small-hack.github.io/appset-secret-plugin
helm install my-release-name appset-secret-plugin/appset-secret-plugin
```

You'll likely want to pass in a value for an existing Kubernetes Secret containing your secret keys you want to be available to the Plugin Generator. To do that, let's say the name of your Kubernetes Secret is `my-secret-name`, you can try this:

```console
helm install my-release-name appset-secret-plugin/argocd-appset-secret-plugin \
helm install my-release-name appset-secret-plugin/appset-secret-plugin \
--set secretVars.existingSecret=my-secret-name
```

Expand Down

0 comments on commit 09c7966

Please sign in to comment.