Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add HA settings to Rancher UI questions #425

Merged
merged 5 commits into from
Apr 17, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat: Add default policyServer UI questions
Signed-off-by: Víctor Cuadrado Juan <[email protected]>
viccuad committed Apr 16, 2024

Verified

This commit was signed with the committer’s verified signature. The key has expired.
viccuad Víctor Cuadrado Juan
commit fd57444f8c53173868855aacdaaf6446f4865d89
9 changes: 9 additions & 0 deletions charts/kubewarden-controller/questions.yaml
Original file line number Diff line number Diff line change
@@ -57,6 +57,15 @@ questions:
description: |
Additional namespaces that the audit scanner will not scan.
group: "Audit checks"
# controller HA:
- variable: "replicas"
type: integer
default: 1
required: true
label: Number of replicas
description: |
Number of replicas of the Controller Deployment
group: "Controller HA"
# Certificates:
- variable: tls.source
default: "cert-manager-self-signed"
18 changes: 18 additions & 0 deletions charts/kubewarden-defaults/questions.yaml
Original file line number Diff line number Diff line change
@@ -32,3 +32,21 @@ questions:
description: |
Additional namespaces that the recommended policies will not apply to.
group: "Recommended Policies"
# Default PolicyServer questions
- variable: "policyServer.serviceAccountName"
type: string
required: true
label: Name of the ServiceAccount associated to the PolicyServer default
description: |
Minimum number of policy-server Pods that must be available at all times.
Can be an integer or a percentage.
group: "Default PolicyServer"
# Default PolicyServer HA
- variable: "policyServer.replicaCount"
type: integer
default: 1
required: true
label: Number of replicas
description: |
Number of replicas of the PolicyServer Deployment
group: "Default PolicyServer HA"