Fix release asset names
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
5656e00e5b
commit
49f567dc98
@ -197,11 +197,6 @@
|
|||||||
path: "{{ kubeconfig.path }}"
|
path: "{{ kubeconfig.path }}"
|
||||||
regexp: 'server: https:\/\/127\.0\.0\.1:6443$'
|
regexp: 'server: https:\/\/127\.0\.0\.1:6443$'
|
||||||
replace: "server: https://{{ cluster.virtualip | ansible.utils.ipaddr('address') }}:6443"
|
replace: "server: https://{{ cluster.virtualip | ansible.utils.ipaddr('address') }}:6443"
|
||||||
- ansible.builtin.slurp:
|
|
||||||
src: "{{ kubeconfig.path }}"
|
|
||||||
register: foo
|
|
||||||
- ansible.builtin.debug:
|
|
||||||
msg: "{{ foo.content | b64decode | trim }}"
|
|
||||||
|
|
||||||
- name: Add Helm chart repositories
|
- name: Add Helm chart repositories
|
||||||
kubernetes.core.helm_repository:
|
kubernetes.core.helm_repository:
|
||||||
@ -227,7 +222,7 @@
|
|||||||
kubeconfig: "{{ kubeconfig.path }}"
|
kubeconfig: "{{ kubeconfig.path }}"
|
||||||
loop:
|
loop:
|
||||||
- name: fleet-crd
|
- name: fleet-crd
|
||||||
url: "https://github.com/rancher/fleet/releases/download/{{ latest_release.json.tag_name }}/fleet-crd-{{ latest_release.json.tag_name }}.tgz"
|
url: "https://github.com/rancher/fleet/releases/download/{{ latest_release.json.tag_name }}/fleet-crd-{{ latest_release.json.tag_name[1:] }}.tgz"
|
||||||
- name: fleet
|
- name: fleet
|
||||||
url: "https://github.com/rancher/fleet/releases/download/{{ latest_release.json.tag_name }}/fleet-{{ latest_release.json.tag_name }}.tgz"
|
url: "https://github.com/rancher/fleet/releases/download/{{ latest_release.json.tag_name }}/fleet-{{ latest_release.json.tag_name[1:] }}.tgz"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user