-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from weaveworks/dev
release v2.1.0
- Loading branch information
Showing
5 changed files
with
39 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
apiVersion: v2 | ||
appVersion: "2.0.0" | ||
appVersion: "2.1.0" | ||
description: A Helm chart for Kubernetes to configure the policy agent | ||
name: policy-agent | ||
version: 2.0.0 | ||
version: 2.1.0 | ||
maintainers: | ||
- name: Weaveworks | ||
email: support@weave.works |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Policy Agent Helm Release | ||
|
||
## Installation | ||
```bash | ||
helm repo add policy-agent https://weaveworks.github.io/policy-agent/ | ||
``` | ||
|
||
## Configuration | ||
|
||
List of available variables: | ||
|
||
|
||
| Key | Type | Default | Description | | ||
|-----------------------|---------------|---------------------------|-----------------------------------------------------------------------------------------------------------| | ||
| `image` | `string` | `weaveworks/policy-agent` | docker image. | | ||
| `useCertManager` | `boolean` | `true` | use [cert-manager](https://cert-manager.io/) to manage agent's TLS certificate. | | ||
| `certificate` | `string` | | TLS certificate. Not needed if `useCertManager` is set to `true`. | | ||
| `key` | `string` | | TLS key. Not needed if `useCertManager` is set to `true`. | | ||
| `caCertificate` | `string` | | TLS CA Certificate . Not needed if `useCertManager` is set to `true`. | | ||
| `failurePolicy` | `string` | `Fail` | Whether to fail or ignore when the admission controller request fails. Available values `Fail`, `Ignore` | | ||
| `excludeNamespaces` | `[]string` | | List of namespaces to ignore by the admission controller. | | ||
| `config` | `object` | | Agent configuration. See agent's configuration [guide](../docs/README.md#configuration). | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.0.0 | ||
2.1.0 |