Skip to content

Commit

Permalink
add a spot of additional docs for the values.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
jessebot committed Aug 8, 2023
1 parent d635118 commit 670dc25
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/bitwarden-eso-provider/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.1
version: 0.2.2

# renovate: image=jessebot/bweso
appVersion: "v0.1.0"
Expand Down
10 changes: 5 additions & 5 deletions charts/bitwarden-eso-provider/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# bitwarden-eso-provider

![Version: 0.2.1](https://img.shields.io/badge/Version-0.2.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)
![Version: 0.2.2](https://img.shields.io/badge/Version-0.2.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)

Helm chart to use Bitwarden as a Provider for External Secrets Operator

Expand All @@ -16,9 +16,9 @@ Helm chart to use Bitwarden as a Provider for External Secrets Operator
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| affinity | object | `{}` | |
| autoscaling.enabled | bool | `false` | |
| autoscaling.maxReplicas | int | `100` | |
| autoscaling.minReplicas | int | `1` | |
| autoscaling.enabled | bool | `false` | enable pod autoscaling |
| autoscaling.maxReplicas | int | `100` | max number of pods to spin up |
| autoscaling.minReplicas | int | `1` | minimum number of pods to keep |
| autoscaling.targetCPUUtilizationPercentage | int | `80` | |
| bitwarden_eso_provider.auth.clientID | string | `""` | bitwarden client ID to use to grabs secrets in the pod, ignored if existingSecret is set |
| bitwarden_eso_provider.auth.clientSecret | string | `""` | bitwarden client Secret to use to grabs secrets in the pod, ignored if existingSecret is set |
Expand All @@ -39,7 +39,7 @@ Helm chart to use Bitwarden as a Provider for External Secrets Operator
| nodeSelector | object | `{}` | |
| podAnnotations | object | `{}` | additional annotations to apply to the bitwarden ESO provider pod |
| podSecurityContext | object | `{}` | |
| replicaCount | int | `1` | |
| replicaCount | int | `1` | replicas to deploy of this pod |
| resources | object | `{}` | |
| securityContext | object | `{}` | |
| service.port | int | `80` | port to broadcast for k8s service internally on the cluster |
Expand Down
5 changes: 4 additions & 1 deletion charts/bitwarden-eso-provider/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

# replicas to deploy of this pod
# -- replicas to deploy of this pod
replicaCount: 1

image:
Expand Down Expand Up @@ -85,8 +85,11 @@ resources: {}
# memory: 128Mi

autoscaling:
# -- enable pod autoscaling
enabled: false
# -- minimum number of pods to keep
minReplicas: 1
# -- max number of pods to spin up
maxReplicas: 100
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
Expand Down

0 comments on commit 670dc25

Please sign in to comment.