Compare commits

...

3 Commits

Author SHA1 Message Date
ace
e05607693a
cert-manager: bump to v1.14.6, helm chart v1.14.6
postgres-operator: bump to v1.12.2, helm chart v1.12.2

postgres-operator-ui: bump to v1.12.2, helm chart v1.12.2
2024-06-16 17:39:16 +03:00
ace
c16ab291dd
fix selinux for haproxy 2024-06-16 17:39:10 +03:00
ace
5a980d28ad
fix selinux for nginx 2024-06-16 17:39:08 +03:00
3 changed files with 24 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# MetalLB balancer # MetalLB balancer
metallb_version: 0.14.5 metallb_version: 0.14.6
# NFS provisioners # NFS provisioners
nfs_client_provisioner_hdd_version: 4.0.18 nfs_client_provisioner_hdd_version: 4.0.18
@ -26,8 +26,8 @@ internal_ingress_nginx_version: 4.2.3
local_ingress_nginx_version: 4.2.3 local_ingress_nginx_version: 4.2.3
# PostgreSQL operator # PostgreSQL operator
postgres_operator_version: 1.12.0 postgres_operator_version: 1.12.2
postgres_operator_ui_version: 1.12.0 postgres_operator_ui_version: 1.12.2
# OpenLDAP # OpenLDAP
openldap_version: 1.2.7 openldap_version: 1.2.7

View File

@ -13,6 +13,13 @@
- restart haproxy - restart haproxy
when: haproxy_config is defined when: haproxy_config is defined
- name: set haproxy_connect_any flag on and keep it persistent across reboots
ansible.posix.seboolean:
name: haproxy_connect_any
state: yes
persistent: yes
when: ansible_selinux is defined and ansible_selinux != False and ansible_selinux.status == 'enabled'
- name: start haproxy service - name: start haproxy service
systemd: systemd:
name: haproxy name: haproxy

View File

@ -10,3 +10,17 @@
register: install_nginx_result register: install_nginx_result
tags: tags:
- nginx-install - nginx-install
- name: set httpd_can_network_connect flag on and keep it persistent across reboots
ansible.posix.seboolean:
name: httpd_can_network_connect
state: yes
persistent: yes
when: ansible_selinux is defined and ansible_selinux != False and ansible_selinux.status == 'enabled'
- name: set httpd_can_network_relay flag on and keep it persistent across reboots
ansible.posix.seboolean:
name: httpd_can_network_relay
state: yes
persistent: yes
when: ansible_selinux is defined and ansible_selinux != False and ansible_selinux.status == 'enabled'