mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-15 20:00:47 -03:30
* project: fix var-spacing ansible rule Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: fix spacing on the beginning/end of jinja template Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: fix spacing of default filter Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: fix spacing between filter arguments Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: fix double space at beginning/end of jinja Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: fix remaining jinja[spacing] ansible-lint warning Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> --------- Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
20 lines
813 B
YAML
20 lines
813 B
YAML
---
|
|
cert_manager_namespace: "cert-manager"
|
|
cert_manager_user: 1001
|
|
cert_manager_tolerations: []
|
|
cert_manager_affinity: {}
|
|
cert_manager_nodeselector: {}
|
|
cert_manager_dns_policy: "ClusterFirst"
|
|
cert_manager_dns_config: {}
|
|
cert_manager_controller_extra_args: []
|
|
|
|
## Allow http_proxy, https_proxy and no_proxy environment variables
|
|
## Details https://github.com/kubernetes-sigs/kubespray/blob/master/docs/proxy.md
|
|
cert_manager_http_proxy: "{{ http_proxy | default('') }}"
|
|
cert_manager_https_proxy: "{{ https_proxy | default('') }}"
|
|
cert_manager_no_proxy: "{{ no_proxy | default('') }}"
|
|
|
|
## Change leader election namespace when deploying on GKE Autopilot that forbid the changes on kube-system namespace.
|
|
## See https://github.com/jetstack/cert-manager/issues/3717
|
|
cert_manager_leader_election_namespace: kube-system
|