-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* removed krb5_server dependency on krb5_client * replaced the ca_certs role with tasks in tls_install_certs * added verification for FreeIPA TLS and clients * corrected note on ca certificates in freeipa docs Signed-off-by: William Dyson <wdyson@cloudera.com> Co-authored-by: William Dyson <wdyson@cloudera.com>
- Loading branch information
Showing
16 changed files
with
117 additions
and
49 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
File renamed without changes.
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,22 @@ | ||
[libdefaults] | ||
default_realm = {{ krb5_realm|upper }} | ||
dns_lookup_kdc = false | ||
dns_lookup_realm = false | ||
ticket_lifetime = 1d | ||
renew_lifetime = 7d | ||
forwardable = true | ||
default_tgs_enctypes = {{ krb5_enc_types }} | ||
default_tkt_enctypes = {{ krb5_enc_types }} | ||
permitted_enctypes = {{ krb5_enc_types }} | ||
udp_preference_limit = 1 | ||
kdc_timeout = 3000 | ||
|
||
[realms] | ||
{{ krb5_realm|upper }} = { | ||
kdc = {{ krb5_kdc_host | default(groups['krb5_server'][0]) }} | ||
admin_server = {{ krb5_kdc_host | default(groups['krb5_server'][0]) }} | ||
} | ||
|
||
[domain_realm] | ||
.{{ ansible_domain }} = {{ krb5_realm|upper }} | ||
{{ ansible_domain }} = {{ krb5_realm|upper }} |
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 |
---|---|---|
|
@@ -49,4 +49,4 @@ | |
state: restarted | ||
enabled: yes | ||
with_items: | ||
- "{{ krb5_services }}" | ||
- "{{ krb5_services }}" |
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 |
---|---|---|
|
@@ -13,4 +13,6 @@ | |
# limitations under the License. | ||
|
||
--- | ||
krb5_packages: krb5-server | ||
krb5_packages: | ||
- krb5-server | ||
- krb5-client |
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