Skip to content

Commit

Permalink
docs(chart): prepare for releasing chart
Browse files Browse the repository at this point in the history
  • Loading branch information
ralgozino committed Dec 20, 2024
1 parent ef0adab commit 33690e3
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ keywords:
# 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.12.0"
version: "0.13.0"

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
18 changes: 17 additions & 1 deletion chart/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Gatekeeper Policy Manager Helm Chart - v0.12.0
# Gatekeeper Policy Manager Helm Chart - v0.13.0

A Helm chart for Gatekeeper Policy Manager, a simple to use, read-only web UI for viewing OPA Gatekeeper policies' status in a Kubernetes Cluster.

Expand Down Expand Up @@ -72,4 +72,20 @@ The following table lists the configurable parameters of the Gatekeeper Policy M
| `rbac.create` | | true |
| `clusterRole.create` | | true |
| `clusterRole.name` | | "gatekeeper-policy-manager-crd-view" |
| `livenessProbe.enabled` | | true |
| `livenessProbe.httpGet.path` | | "/health" |
| `livenessProbe.httpGet.port` | | "http" |
| `livenessProbe.initialDelaySeconds` | | 10 |
| `livenessProbe.periodSeconds` | | 10 |
| `livenessProbe.timeoutSeconds` | | 1 |
| `livenessProbe.successThreshold` | | 1 |
| `livenessProbe.failureThreshold` | | 3 |
| `readinessProbe.enabled` | | true |
| `readinessProbe.httpGet.path` | | "/health" |
| `readinessProbe.httpGet.port` | | "http" |
| `readinessProbe.initialDelaySeconds` | | 5 |
| `readinessProbe.periodSeconds` | | 5 |
| `readinessProbe.timeoutSeconds` | | 1 |
| `readinessProbe.successThreshold` | | 1 |
| `readinessProbe.failureThreshold` | | 3 |

2 changes: 1 addition & 1 deletion chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,4 +158,4 @@ spec:
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end }}

0 comments on commit 33690e3

Please sign in to comment.