release 3.5.0

This commit is contained in:
havelight-ee
2023-03-30 10:06:08 +09:00
parent c9ac62623a
commit 25d0ef82ea
37 changed files with 3576 additions and 2640 deletions

View File

@@ -49,3 +49,20 @@
port: "{{ elasticsearch_service_port }}"
nodePort: "{{ elasticsearch_nodePort }}"
apply: yes
- name: 6. Change a Postgres Service (NodePort=postgres_nodePort)
kubernetes.core.k8s:
state: present
definition:
apiVersion: v1
kind: Service
metadata:
name: "{{ postgres_service_name }}"
namespace: "{{ cmoa_namespace }}"
spec:
type: NodePort
ports:
- protocol: TCP
port: "{{ postgres_service_port }}"
nodePort: "{{ postgres_nodePort }}"
apply: yes