You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please see [pkg/providers](https://github.com/helmfile/vals/tree/master/pkg/providers) for the implementations of all the providers. The package names corresponds to the URI schemes.
Authentication to the Kubernetes cluster is done by referencing the local kubeconfig file.
806
+
Authentication to the Kubernetes cluster is done by referencing the local kubeconfig file or in-cluster config.
785
807
The path to the kubeconfig can be specified as a URI parameter, read from the `KUBECONFIG` environment variable or the provider will attempt to read `$HOME/.kube/config`.
786
808
The Kubernetes context can be specified as a URI parameteter.
809
+
If `?inCluster` is passed in the URI, ensure the pod running the `vals`command has the appropriate RBAC permissions to access the ConfigMap/Secret.
This provider retrieves the secrets stored in Bitwarden. It uses the [Bitwarden Vault-Management API](https://bitwarden.com/help/vault-management-api/) that is included in the [Bitwarden CLI](https://github.com/bitwarden/clients) by executing `bw serve`.
876
+
This provider retrieves the secrets stored in Bitwarden. It uses the [Bitwarden Vault-Management API](https://bitwarden.com/help/vault-management-api/) that is included in the [Bitwarden CLI](https://github.com/bitwarden/clients) by executing `bw serve`.
853
877
854
878
Environment variables:
855
879
@@ -872,7 +896,7 @@ Examples:
872
896
873
897
This provider retrieves values stored in JSON hosted by a HTTP frontend.
874
898
875
-
This provider is built on top of [jsonquery](https://pkg.go.dev/github.com/antchfx/jsonquery@v1.3.3) and [xpath](https://pkg.go.dev/github.com/antchfx/xpath@v1.2.3) packages.
899
+
This provider is built on top of [jsonquery](https://pkg.go.dev/github.com/antchfx/jsonquery@v1.3.3) and [xpath](https://pkg.go.dev/github.com/antchfx/xpath@v1.2.3) packages.
876
900
877
901
Given the diverse array of JSON structures that can be encountered, utilizing jsonquery with XPath presents a more effective approach for handling this variability in data structures.
878
902
@@ -896,7 +920,7 @@ Let's say you want to fetch the below JSON object from https://api.github.com/us
896
920
"name": "go-yaml"
897
921
}
898
922
]
899
-
```
923
+
```
900
924
```
901
925
# To get name="chartify" using https protocol you would use:
0 commit comments