fix: Incorrect dictionary key reference
This commit is contained in:
parent
3b89aed52b
commit
e4cfc26e2c
@ -15,9 +15,9 @@
|
|||||||
{{
|
{{
|
||||||
{ 'components': (
|
{ 'components': (
|
||||||
metacluster_chartvalues |
|
metacluster_chartvalues |
|
||||||
combine({ 'clusterapi' : components['clusterapi'] }) |
|
combine({ 'clusterapi': components['clusterapi'] }) |
|
||||||
combine({ 'kubevip' : components['kubevip'] }) |
|
combine({ 'kubevip' : components['kubevip'] }) |
|
||||||
combine({ 'local-user-auth': components['local-user-auth'] })),
|
combine({ 'pinniped' : components['pinniped'] })),
|
||||||
'appliance': {
|
'appliance': {
|
||||||
'version': (applianceversion)
|
'version': (applianceversion)
|
||||||
}
|
}
|
||||||
@ -111,7 +111,7 @@
|
|||||||
|
|
||||||
- name: Download pinniped local-user-authenticator manifest
|
- name: Download pinniped local-user-authenticator manifest
|
||||||
ansible.builtin.get_url:
|
ansible.builtin.get_url:
|
||||||
url: https://get.pinniped.dev/{{ components['local-user-authenticator'].version }}/install-local-user-authenticator.yaml
|
url: https://get.pinniped.dev/{{ components.pinniped['local-user-authenticator'].version }}/install-local-user-authenticator.yaml
|
||||||
dest: /opt/metacluster/pinniped/local-user-authenticator.yaml
|
dest: /opt/metacluster/pinniped/local-user-authenticator.yaml
|
||||||
register: pinniped_manifest
|
register: pinniped_manifest
|
||||||
retries: 5
|
retries: 5
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
data:
|
data:
|
||||||
- groups: group1,group2
|
- groups: group1,group2
|
||||||
passwordHash: "{{ item.password }}"
|
passwordHash: "{{ item.password }}"
|
||||||
loop: "{{ components['local-user-authenticator'].users }}"
|
loop: "{{ components.pinniped['local-user-authenticator'].users }}"
|
||||||
|
|
||||||
- block:
|
- block:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user