blob: 96c9cd5f2bd8ffc4fa6a7a2e295e56179d748bcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
OpenShift CA
============
This role delegates all tasks to the `openshift_ca_host` such that this role can be depended on by other OpenShift certificate roles.
Requirements
------------
Role Variables
--------------
From this role:
| Name | Default value | Description |
|-------------------------|-----------------------------------------------|-----------------------------------------------------------------------------|
| openshift_ca_host | None (Required) | The hostname of the system where the OpenShift CA will be created. |
| openshift_ca_config_dir | `{{ openshift.common.config_base }}/master` | CA certificate directory. |
| openshift_ca_cert | `{{ openshift_ca_config_dir }}/ca.crt` | CA certificate path including CA certificate filename. |
| openshift_ca_key | `{{ openshift_ca_config_dir }}/ca.key` | CA key path including CA key filename. |
| openshift_ca_serial | `{{ openshift_ca_config_dir }}/ca.serial.txt` | CA serial path including CA serial filename. |
| openshift_version | `{{ openshift_pkg_version }}` | OpenShift package version. |
Dependencies
------------
* openshift_repos
* openshift_cli
Example Playbook
----------------
```
- name: Create OpenShift CA
hosts: localhost
roles:
- role: openshift_ca
openshift_ca_host: master1.example.com
```
License
-------
Apache License Version 2.0
Author Information
------------------
Jason DeTiberus (jdetiber@redhat.com)
|