리소스 변경
This commit is contained in:
@@ -2,6 +2,8 @@
|
||||
- hosts: cluster
|
||||
become: true
|
||||
gather_facts: true
|
||||
environment:
|
||||
KUBECONFIG: /root/.kube/ansible_config
|
||||
vars:
|
||||
cmoa_namespace: imxc
|
||||
pg_version:
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
[master]
|
||||
10.10.43.210
|
||||
10.10.43.200
|
||||
|
||||
[worker1]
|
||||
10.10.43.211
|
||||
10.10.43.201
|
||||
|
||||
[worker2]
|
||||
10.10.43.212
|
||||
10.10.43.202
|
||||
|
||||
[cluster:children]
|
||||
master
|
||||
|
||||
@@ -355,7 +355,7 @@ alertmanager:
|
||||
readOnlyRootFilesystem: true
|
||||
|
||||
distributor:
|
||||
replicas: 1
|
||||
replicas: 2
|
||||
|
||||
service:
|
||||
annotations: {}
|
||||
@@ -458,7 +458,7 @@ distributor:
|
||||
lifecycle: {}
|
||||
|
||||
ingester:
|
||||
replicas: 1
|
||||
replicas: 3
|
||||
|
||||
statefulSet:
|
||||
# -- If true, use a statefulset instead of a deployment for pod management.
|
||||
@@ -737,7 +737,7 @@ ruler:
|
||||
readOnlyRootFilesystem: true
|
||||
|
||||
querier:
|
||||
replicas: 1
|
||||
replicas: 3
|
||||
|
||||
service:
|
||||
annotations: {}
|
||||
@@ -839,7 +839,7 @@ querier:
|
||||
lifecycle: {}
|
||||
|
||||
query_frontend:
|
||||
replicas: 1
|
||||
replicas: 3
|
||||
|
||||
service:
|
||||
annotations: {}
|
||||
|
||||
@@ -1792,12 +1792,14 @@ create table public.audit_log
|
||||
target jsonb
|
||||
);
|
||||
|
||||
CREATE TABLE "intermax" (
|
||||
"cluster_id" VARCHAR(128) NOT NULL,
|
||||
"namespace" VARCHAR(128) NOT NULL,
|
||||
"url" VARCHAR(256) NULL DEFAULT NULL,
|
||||
"service_name" VARCHAR(128) NULL DEFAULT NULL,
|
||||
PRIMARY KEY ("cluster_id", "namespace")
|
||||
create table public.intermax
|
||||
(
|
||||
cluster_id varchar(128) not null,
|
||||
namespace varchar(128) not null,
|
||||
url varchar(256),
|
||||
service_name varchar(128),
|
||||
constraint intermax_pk
|
||||
primary key (cluster_id, namespace)
|
||||
);
|
||||
|
||||
-- Configuration Table 생성
|
||||
|
||||
Reference in New Issue
Block a user