We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi there,
In our organization we have Cockpit configured with Kerberos Authentication (https://cockpit-project.org/guide/latest/sso)
Is this something this role can also support?
The text was updated successfully, but these errors were encountered:
The tasks we use currently for settings up Kerberos:
- name: 'Ensure Kerberos Principal' freeipa.ansible_freeipa.ipaservice: name: "HTTP/{{ ansible_facts['fqdn'] }}@{{ ipaclient_domain | upper }}" state: 'present' ipaadmin_principal: "{{ cockpit_ipa_username }}" ipaadmin_password: "{{ cockpit_ipa_password }}" delegate_to: "{{ cockpit_ipa_server }}" - name: 'Retrieve keytab' ansible.builtin.shell: | kinit -k ipa-getkeytab -p HTTP/$(hostname -f)@{{ ipaclient_domain | upper }} -k '/etc/cockpit/krb5.keytab' args: creates: '/etc/cockpit/krb5.keytab' - name: 'Ensure keytab ownership/permissions' ansible.builtin.file: path: '/etc/cockpit/krb5.keytab' owner: 'root' group: 'root' mode: '0400'
Not sure if this is the cleanest way to set it up, but maybe it helps :-)
Sorry, something went wrong.
No branches or pull requests
Hi there,
In our organization we have Cockpit configured with Kerberos Authentication (https://cockpit-project.org/guide/latest/sso)
Is this something this role can also support?
The text was updated successfully, but these errors were encountered: