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: (IAC-1334) Add a variable and set a default for the kube-vip-cloud-provider version #108

Merged
merged 3 commits into from
Feb 5, 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
2 changes: 1 addition & 1 deletion docs/REQUIREMENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ The current repository supports the provisioning of vSphere VMs. The following t

| Requirement | Description |
| --- | --- |
| Disk | The `root` partition `/` must be on `/dev/sd2`. |
| Disk | The `root` partition `/` must be on `/dev/sd2` and must be an `XFS` file system |
| Hard Disk | Specify `Thin Provision` to adjust the size of the disk to match the machine requirements that were listed previously. |

### Physical Machines or Linux VMs
Expand Down
7 changes: 7 additions & 0 deletions roles/kubernetes/loadbalancer/kube_vip/defaults/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Copyright © 2022-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

---
# https://github.com/kube-vip/kube-vip-cloud-provider
# value must be a tag or branch
kube_vip_cloud_provider_version: "v0.0.8"
2 changes: 1 addition & 1 deletion roles/kubernetes/loadbalancer/kube_vip/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
block:
- name: Install kube-vip Cloud Provider
ansible.builtin.shell: |
kubectl apply -f https://raw.githubusercontent.com/kube-vip/kube-vip-cloud-provider/main/manifest/kube-vip-cloud-controller.yaml
kubectl apply -f https://raw.githubusercontent.com/kube-vip/kube-vip-cloud-provider/{{ kube_vip_cloud_provider_version }}/manifest/kube-vip-cloud-controller.yaml
tags:
- install
- update
Expand Down
Loading