-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: trying to migrate to cilium without fucking up
- Loading branch information
Showing
41 changed files
with
400 additions
and
374 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
timezone: "America/Los_Angeles" | ||
kubevip_address: "10.69.69.2" | ||
cluster_cidr: "10.98.0.0/16" | ||
service_cidr: "10.99.0.0/16" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
- hosts: | ||
- master | ||
- worker | ||
become: true | ||
gather_facts: true | ||
any_errors_fatal: true | ||
pre_tasks: | ||
- name: Pausing for 5 seconds... | ||
ansible.builtin.pause: | ||
seconds: 5 | ||
tasks: | ||
- name: Ensure Kubernetes is running | ||
ansible.builtin.include_role: | ||
name: xanmanning.k3s | ||
public: true | ||
vars: | ||
k3s_state: started | ||
|
||
- name: Upgrade kube-vip | ||
when: | ||
- k3s_control_node is defined | ||
- k3s_control_node | ||
ansible.builtin.template: | ||
src: templates/kube-vip-static-pod.yaml.j2 | ||
dest: "{{ k3s_server_pod_manifests_dir }}/kube-vip-static-pod.yaml" | ||
mode: preserve |
Oops, something went wrong.