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

fix: set the kube-vip var to default value instead of env for clusterclass #402

Merged
merged 1 commit into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions templates/cluster-template-clusterclass.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -539,11 +539,11 @@ spec:
- name: vip_retryperiod
value: "2"
- name: svc_enable
value: "${KUBEVIP_SVC_ENABLE=false}"
value: "false"
- name: lb_enable
value: "${KUBEVIP_LB_ENABLE=false}"
value: "false"
- name: enableServicesElection
value: "${KUBEVIP_SVC_ELECTION=false}"
value: "false"
securityContext:
capabilities:
add:
Expand Down
6 changes: 3 additions & 3 deletions templates/clusterclass/kcpt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ spec:
- name: vip_retryperiod
value: "2"
- name: svc_enable
value: "${KUBEVIP_SVC_ENABLE=false}"
value: "false"
- name: lb_enable
value: "${KUBEVIP_LB_ENABLE=false}"
value: "false"
- name: enableServicesElection
value: "${KUBEVIP_SVC_ELECTION=false}"
value: "false"
securityContext:
capabilities:
add:
Expand Down
Loading