OASE Agent on Kubernetes - Online¶
Introduction¶
Features¶
Prerequisites¶
Exastro IT Automation
Both the Exastro OASE Agent and the Exastro IT Automation must be on the same version in order to operate the Exastro OASE Agent.Client requirements
The following describes confirmed compatible client application as well as their versions.表 32 Client requirements¶ Application
Version
Helm
v3.9.x
kubectl
1.23
Deploy environment
The following describes confirmed compatible operation systems as well as their versions.表 33 Hardware requirements (minimum requirements)¶ Resource type
Required resource
CPU
2 Cores (3.0 GHz, x86_64)
Memory
4GB
Storage (Container image size)
10GB
Kubernetes (Container image size)
1.23 or later
Communication Protocols
The user must be able to access the target fetch server from the OASE Agent.
The user must be able to connect to Docker Hub in order to acquire the container image from the container environment.
警告
If deploying to an environment constructed in Helm chart (Kubernetes) version, make sure that the environment has enough specs to meet additional minimum specs of the OASE Agent.
Preparation¶
Register Helm repository¶
Exastro OASE Agent
Repository |
---|
1# Register Exastro system's Helm repository.
2helm repo add exastro https://exastro-suite.github.io/exastro-helm/ --namespace exastro
3# Update repository information
4helm repo update
Fetch default setting values¶
helm show values exastro/exastro-agent > exastro-agent.yaml
exastro-agent.yaml
1# Default values for exastro-agent.
2# This is a YAML-formatted file.
3# Declare variables to be passed into your templates.
4global:
5 agentGlobalDefinition:
6 name: agent-global
7 enabled: true
8 image:
9 registry: "docker.io"
10 organization: exastro
11 package: exastro-it-automation
12
13ita-ag-oase:
14 agents:
15 - image:
16 repository: ""
17 # Overrides the image tag whose default is the chart appVersion.
18 tag: ""
19 pullPolicy: IfNotPresent
20 extraEnv:
21 TZ: Asia/Tokyo
22 DEFAULT_LANGUAGE: ja
23 LANGUAGE: "en"
24 ITERATION: "500"
25 EXECUTE_INTERVAL: "10"
26 LOG_LEVEL: INFO
27 AGENT_NAME: "oase-agent"
28 EXASTRO_URL: "http://platform-auth:8000"
29 EXASTRO_ORGANIZATION_ID: "org001"
30 EXASTRO_WORKSPACE_ID: "ws01"
31 # ROLES: "_ws_admin"
32 EVENT_COLLECTION_SETTINGS_NAMES: "id0001"
33 secret:
34 EXASTRO_REFRESH_TOKEN: "exastro_refresh_token"
35 # EXASTRO_USERNAME: "admin"
36 # EXASTRO_PASSWORD: "sample-password"
37 resources: {}
38 # requests:
39 # memory: "64Mi"
40 # cpu: "250m"
41 # limits:
42 # memory: "64Mi"
43 # cpu: "250m"
44
45 imagePullSecrets: []
46 nameOverride: ""
47 fullnameOverride: ""
48
49 initContainerImage:
50 repository: "registry.access.redhat.com/ubi8/ubi-init"
51 pullPolicy: IfNotPresent
52 # Overrides the image tag whose default is the chart appVersion.
53 tag: ""
54
55 serviceAccount:
56 # Specifies whether a service account should be created
57 create: false
58 # Annotations to add to the service account
59 annotations: {}
60 # The name of the service account to use.
61 # If not set and create is true, a name is generated using the fullname template
62 name: ""
63
64 persistence:
65 enabled: true
66 reinstall: false
67 accessMode: ReadWriteMany
68 size: 10Gi
69 volumeType: hostPath # e.g.) hostPath or AKS
70 storageClass: "-" # e.g.) azurefile or - (None)
71 # matchLabels:
72 # release: "stable"
73 # matchExpressions:
74 # - {key: environment, operator: In, values: [dev]}
75 mountPath:
76 storage: /storage
77 homeDir: /home/app_user
78 pid:
79 path: /var/run_app_user/httpd/pid
80 subPath: httpd-pid
81 socket:
82 path: /var/run_app_user/httpd/socket
83 subPath: httpd-socket
84 tmp: /tmp
85
86 podAnnotations: {}
87
88 podSecurityContext: {}
89 # fsGroup: 2000
90
91 securityContext:
92 allowPrivilegeEscalation: false
93 readOnlyRootFilesystem: true
94 runAsUser: 1000
95 runAsGroup: 1000
96 runAsNonRoot: true
97
98 service: {}
99
100 ingress:
101 enabled: false
102 className: ""
103 annotations: {}
104 # kubernetes.io/ingress.class: nginx
105 # kubernetes.io/tls-acme: "true"
106 hosts:
107 - host: chart-example.local
108 paths:
109 - path: /
110 pathType: ImplementationSpecific
111 tls: []
112 # - secretName: chart-example-tls
113 # hosts:
114 # - chart-example.local
115
116 nodeSelector: {}
117
118 tolerations: []
119
120 affinity: {}
exastro-agent.yaml
.OASE Agent settings¶
Simple architecture
Multiple agents (Same Pod)
Multiple agents (Different Pod)
Parameter¶
パラメータ |
説明 |
変更 |
デフォルト値・選択可能な設定値 |
---|---|---|---|
ita-ag-oase.agents.image.repository |
コンテナイメージのリポジトリ名 |
不可 |
"" |
ita-ag-oase.agents.image.tag |
コンテナイメージのタグ |
不可 |
"" |
ita-ag-oase.agents.image.pullPolicy |
イメージプルポリシー |
可 |
IfNotPresent (デフォルト): コンテナイメージが存在しない場合のみプル
Always: 毎回必ずプル
None: プルしない
|
ita-ag-oase.agents.extraEnv.TZ |
OASE エージェント システムで使用する規定の言語 |
可 |
Asia/Tokyo |
ita-ag-oase.agents.extraEnv.DEFAULT_LANGUAGE |
OASE エージェント システムで使用する言語 |
可 |
ja |
ita-ag-oase.agents.extraEnv.LANGUAGE |
OASE エージェント のバージョン |
可 |
en |
ita-ag-oase.agents.extraEnv.ITERATION |
OASE エージェント が設定を初期化するまでの、処理の繰り返し数(上限値: 120、下限値: 10) |
可 |
500 |
ita-ag-oase.agents.extraEnv.EXECUTE_INTERVAL |
ita-ag-oaseがイベント取得対象に対してイベント取得の間隔(秒)(下限値: 3) |
可 |
10 |
ita-ag-oase.agents.extraEnv.LOG_LEVEL |
OASE エージェント のログレベル |
可 |
INFO |
ita-ag-oase.eagents.xtraEnv.AGENT_NAME |
起動する OASEエージェントの名前 |
可 |
oase-agent |
ita-ag-oase.agents.extraEnv.EXASTRO_URL |
Exastro IT Automation の Service URL |
可 |
|
ita-ag-oase.agents.extraEnv.EXASTRO_ORGANIZATION_ID |
Exastro IT Automation で作成した OrganizationID |
必須 |
org001 |
ita-ag-oase.agents.extraEnv.EXASTRO_WORKSPACE_ID |
Exastro IT Automation で作成した WorkspaceID |
必須 |
ws01 |
ita-ag-oase.agents.extraEnv.EVENT_COLLECTION_SETTINGS_NAMES |
Exastro IT Automation のOASE管理 イベント収集 で作成した イベント収集設定名
カンマ区切りで複数指定可能
|
必須 |
id0001 |
ita-ag-oase.agents.secret.EXASTRO_REFRESH_TOKEN |
Exastro システム管理画面から取得したリフレッシュトークン※
※ユーザーのロールが、OASE - イベント - イベント履歴メニューをメンテナンス可能である必要があります。
|
可 |
無し |
ita-ag-oase.agents.secret.EXASTRO_USERNAME |
Exastro IT Automation で作成した ユーザー名
※ユーザーのロールが、OASE - イベント - イベント履歴メニューをメンテナンス可能である必要があります。
※EXASTRO_REFRESH_TOKENを使わない場合(非推奨)
|
可 |
admin |
ita-ag-oase.agents.secret.EXASTRO_PASSWORD |
Exastro IT Automation で作成した パスワード
※EXASTRO_REFRESH_TOKENを使わない場合(非推奨)
|
可 |
sample-password |
ita-ag-oase.agents.resources.requests.memory |
メモリ要求 |
可 |
"64Mi" |
ita-ag-oase.agents.resources.requests.cpu |
CPU要求 |
可 |
"250m" |
ita-ag-oase.agents.resources.limits.memory |
メモリ上限 |
可 |
"64Mi" |
ita-ag-oase.agents.resources.limits.cpu |
CPU上限 |
可 |
"250m" |
ita-ag-oase.nameOverride |
Exastro OASE Agent の定義名
※同一クラスタ内に複数エージェントを構築する際は必須
|
可 |
"" |
ita-ag-oase.persistence.enabled |
OASE エージェントコンテナのデプロイの有無 |
可 |
true (デフォルト): OASE エージェントコンテナをデプロイします。
false : OASE エージェントコンテナをデプロイしません。
|
ita-ag-oase.persistence.reinstall |
再インストール時にデータ領域の初期化の要否 |
不可 |
true : データを初期化(削除)する
false (デフォルト): データを初期化(削除)しない
|
ita-ag-oase.persistence.accessMode |
永続ボリュームのアクセスモードの指定。 |
不可 |
"ReadWriteMany" |
ita-ag-oase.persistence.size |
永続ボリュームのディスク容量 |
可 (データ永続化時) |
"10Gi" |
ita-ag-oase.persistence.volumeType |
永続ボリュームのボリュームタイプ |
可 (現在無効) |
hostPath (デフォルト): Kubernetes クラスタのノード上にデータを保存(非推奨)
AKS: AKS のストレージクラスを利用
|
ita-ag-oase.persistence.storageClass |
永続ボリュームにストレージクラスを利用する場合のクラスを指定 |
可 (データ永続化時) |
- (デフォルト): ストレージクラスを指定しない。
ストレージクラス名: クラウドプロバイダなどから提供されるストレージクラス名を指定。
|
exastro-platform.mariadb.persistence.matchLabels.name |
利用する永続ボリューム名を指定 |
可(データ永続化時) |
"" |
OASE Agent parameter setting example¶
Features
Setting example
OASE Agent settings
Configure the OASE Agent.13ita-ag-oase: 14 agents: 15 - image: 16 repository: "" 17 # Overrides the image tag whose default is the chart appVersion. 18 tag: "alpha.4ccca4.20240124-110529" 19 pullPolicy: IfNotPresent 20 extraEnv: 21 TZ: Asia/Tokyo 22 DEFAULT_LANGUAGE: ja 23 LANGUAGE: "en" 24 ITERATION: "500" 25 EXECUTE_INTERVAL: "10" 26 LOG_LEVEL: INFO 27 AGENT_NAME: "oase-agent" 28- EXASTRO_URL: "http://platform-auth:8000" 29+ EXASTRO_URL: "http://your-exastro-url" # Exastro IT Automation Service URL 30- EXASTRO_ORGANIZATION_ID: "org001" 31+ EXASTRO_ORGANIZATION_ID: "your-organization-id" # Organization created in Exastro IT Automation 32- EXASTRO_WORKSPACE_ID: "ws01" 33+ EXASTRO_WORKSPACE_ID: "your-workspace-id" # WorkspaceID created in Exastro IT Automation 34 # ROLES: "_ws_admin" 35- EVENT_COLLECTION_SETTINGS_NAMES: "id0001" 36+ EVENT_COLLECTION_SETTINGS_NAMES: "your-event-collection-settigs-names" # The Event collection setting name created in Exastro IT Automation's OASE Management event collection. 37 secret: 38- EXASTRO_REFRESH_TOKEN: "exastro_refresh_token" 39+ EXASTRO_REFRESH_TOKEN: "your_exastro_refresh_token" # Refresh token fetched from the Exastro System management page. 40 # EXASTRO_USERNAME: "admin" 41 # EXASTRO_PASSWORD: "sample-password" 42+ # EXASTRO_USERNAME: "your-ita-user-name" # Username created in Exastro IT Automation.(Remember to uncomment if using this) 43+ # EXASTRO_PASSWORD: "your-ita-user-password" # Password created in Exastro IT Automation.(Remember to uncomment if using this)
Features
Setting example
OASE Agent settings
Configure OASE Agent13ita-ag-oase: 14 agents: 15 - image: 16 repository: "" 17 # Overrides the image tag whose default is the chart appVersion. 18 tag: "alpha.4ccca4.20240124-110529" 19 pullPolicy: IfNotPresent 20 extraEnv: 21 TZ: Asia/Tokyo 22 DEFAULT_LANGUAGE: ja 23 LANGUAGE: "en" 24 ITERATION: "500" 25 EXECUTE_INTERVAL: "10" 26 LOG_LEVEL: INFO 27 AGENT_NAME: "oase-agent" 28+ AGENT_NAME: "oase-agent-1" # Name of the OASE Agent 29- EXASTRO_URL: "http://platform-auth:8000" 30+ EXASTRO_URL: "http://your-exastro-url" # Exastro IT Automation Service URL 31- EXASTRO_ORGANIZATION_ID: "org001" 32+ EXASTRO_ORGANIZATION_ID: "your-organization-id" # Organization created in Exastro IT Automation 33- EXASTRO_WORKSPACE_ID: "ws01" 34+ EXASTRO_WORKSPACE_ID: "your-workspace-id" # WorkspaceID created in Exastro IT Automation 35 # ROLES: "_ws_admin" 36- EVENT_COLLECTION_SETTINGS_NAMES: "id0001" 37+ EVENT_COLLECTION_SETTINGS_NAMES: "your-event-collection-settigs-names" # The Event collection setting name created in Exastro IT Automation's OASE Management event collection. 38 secret: 39- EXASTRO_REFRESH_TOKEN: "exastro_refresh_token" 40+ EXASTRO_REFRESH_TOKEN: "your_exastro_refresh_token" # Refresh token fetched from the Exastro System management page. 41 # EXASTRO_USERNAME: "admin" 42 # EXASTRO_PASSWORD: "sample-password" 43+ # EXASTRO_USERNAME: "your-ita-user-name" # Username created in Exastro IT Automation.(Remember to uncomment if using this) 44+ # EXASTRO_PASSWORD: "your-ita-user-password" # Password created in Exastro IT Automation.(Remember to uncomment if using this) 45+ - image: 46+ repository: "" 47+ # Overrides the image tag whose default is the chart appVersion. 48+ tag: "alpha.4ccca4.20240124-110529" 49+ pullPolicy: IfNotPresent 50+ extraEnv: 51+ TZ: Asia/Tokyo 52+ DEFAULT_LANGUAGE: ja 53+ LANGUAGE: "en" 54+ ITERATION: "500" 55+ EXECUTE_INTERVAL: "10" 56+ LOG_LEVEL: INFO 57+ AGENT_NAME: "oase-agent-2" # Name of the OASE Agent 58+ EXASTRO_URL: "http://your-exastro-url" # Exastro IT Automation Service URL 59+ EXASTRO_ORGANIZATION_ID: "your-organization-id" # Organization created in Exastro IT Automation 60+ EXASTRO_WORKSPACE_ID: "your-workspace-id-2" # WorkspaceID created in Exastro IT Automation 61+ # ROLES: "_ws_admin" 62+ EVENT_COLLECTION_SETTINGS_NAMES: "your-event-collection-settigs-names-2" # The Event collection setting name created in Exastro IT Automation's OASE Management event collection. 63+ secret: 64+ EXASTRO_REFRESH_TOKEN: "your_exastro_refresh_token" # Refresh token fetched from the Exastro System management page. 65+ EXASTRO_USERNAME: "your-ita-user-name" # Username created in Exastro IT Automation.(Remember to uncomment if using this) 66+ EXASTRO_PASSWORD: "your-ita-user-password" # Password created in Exastro IT Automation.(Remember to uncomment if using this)
Features
Setting example
Prepare Setting value file
Copy exastro-agent.yaml and prepare exastro-agent-1.yamlCopy exastro-agent.yaml and prepare exastro-agent-2.yaml- First OASE Agent + AGENT_NAME: "oase-agent-1" # Name of the OASE Agent
EXASTRO_URL: "http://platform-auth:8000"
EXASTRO_URL: "http://your-exastro-url" # Exastro IT Automation Service URL
EXASTRO_ORGANIZATION_ID: "org001"
EXASTRO_ORGANIZATION_ID: "your-organization-id" # Organization created in Exastro IT Automation
EXASTRO_WORKSPACE_ID: "ws01"
EXASTRO_WORKSPACE_ID: "your-workspace-id" # WorkspaceID created in Exastro IT Automation # ROLES: "_ws_admin"
EVENT_COLLECTION_SETTINGS_NAMES: "id0001"
EVENT_COLLECTION_SETTINGS_NAMES: "your-event-collection-settigs-names" # The Event collection setting name created in Exastro IT Automation's OASE Management event collection.
secret:
EXASTRO_REFRESH_TOKEN: "exastro_refresh_token"
EXASTRO_REFRESH_TOKEN: "your_exastro_refresh_token" # Refresh token fetched from the Exastro System management page. # EXASTRO_USERNAME: "admin" # EXASTRO_PASSWORD: "sample-password"
# EXASTRO_USERNAME: "your-ita-user-name" # Username created in Exastro IT Automation.(Remember to uncomment if using this)
# EXASTRO_PASSWORD: "your-ita-user-password" # Password created in Exastro IT Automation.(Remember to uncomment if using this)
13ita-ag-oase: 14 agents: 15 - image: 16 repository: "" 17 # Overrides the image tag whose default is the chart appVersion. 18 tag: "" 19 pullPolicy: IfNotPresent 20 extraEnv: 21 TZ: Asia/Tokyo 22 DEFAULT_LANGUAGE: ja 23 LANGUAGE: "en" 24 ITERATION: "500" 25 EXECUTE_INTERVAL: "10" 26 LOG_LEVEL: INFO 27 AGENT_NAME: "oase-agent" 28- EXASTRO_URL: "http://platform-auth:8000" 29+ EXASTRO_URL: "http://your-exastro-url" # Exastro IT Automation Service URL 30- EXASTRO_ORGANIZATION_ID: "org001" 31+ EXASTRO_ORGANIZATION_ID: "your-organization-id" # Organization created in Exastro IT Automation 32- EXASTRO_WORKSPACE_ID: "ws01" 33+ EXASTRO_WORKSPACE_ID: "your-workspace-id" # WorkspaceID created in Exastro IT Automation 34 # ROLES: "_ws_admin" 35- EVENT_COLLECTION_SETTINGS_NAMES: "id0001" 36+ EVENT_COLLECTION_SETTINGS_NAMES: "your-event-collection-settigs-names" # The Event collection setting name created in Exastro IT Automation's OASE Management event collection. 37 secret: 38- EXASTRO_REFRESH_TOKEN: "exastro_refresh_token" 39+ EXASTRO_REFRESH_TOKEN: "your_exastro_refresh_token" # Refresh token fetched from the Exastro System management page. 40 # EXASTRO_USERNAME: "admin" 41 # EXASTRO_PASSWORD: "sample-password" 42+ # EXASTRO_USERNAME: "your-ita-user-name" # Username created in Exastro IT Automation.(Remember to uncomment if using this) 43+ # EXASTRO_PASSWORD: "your-ita-user-password" # Password created in Exastro IT Automation.(Remember to uncomment if using this)
Configure First OASE Agent definition name
45 imagePullSecrets: [] 46- nameOverride: "" 47+ nameOverride: "ita-ag-oase-1" # Exastro OASE Agent definition name 48 fullnameOverride: ""
Configure first OASE Agent's matchLabels
64 persistence: 65 enabled: true 66 reinstall: false 67 accessMode: ReadWriteMany 68 size: 10Gi 69 volumeType: hostPath # e.g.) hostPath or AKS 70 storageClass: "-" # e.g.) azurefile or - (None) 71- # matchLabels: 72- # release: "stable" 73+ matchLabels: 74+ release: "pv-ita-ag-oase-1" # Specify the name of the presistent volume that will be used
Configure Second OASE Agent definition name
13ita-ag-oase: 14 agents: 15 - image: 16 repository: "" 17 # Overrides the image tag whose default is the chart appVersion. 18 tag: "" 19 pullPolicy: IfNotPresent 20 extraEnv: 21 TZ: Asia/Tokyo 22 DEFAULT_LANGUAGE: ja 23 LANGUAGE: "en" 24 ITERATION: "500" 25 EXECUTE_INTERVAL: "10" 26 LOG_LEVEL: INFO 27 AGENT_NAME: "oase-agent" 28- EXASTRO_URL: "http://platform-auth:8000" 29+ EXASTRO_URL: "http://your-exastro-url" # Exastro IT Automation Service URL 30- EXASTRO_ORGANIZATION_ID: "org001" 31+ EXASTRO_ORGANIZATION_ID: "your-organization-id" # Organization created in Exastro IT Automation 32- EXASTRO_WORKSPACE_ID: "ws01" 33+ EXASTRO_WORKSPACE_ID: "your-workspace-id-2" # WorkspaceID created in Exastro IT Automation 34 # ROLES: "_ws_admin" 35- EVENT_COLLECTION_SETTINGS_NAMES: "id0001" 36+ EVENT_COLLECTION_SETTINGS_NAMES: "your-event-collection-settigs-names" # The Event collection setting name created in Exastro IT Automation's OASE Management event collection. 37 secret: 38- EXASTRO_REFRESH_TOKEN: "exastro_refresh_token" 39+ EXASTRO_REFRESH_TOKEN: "your_exastro_refresh_token" # Refresh token fetched from the Exastro System management page. 40 # EXASTRO_USERNAME: "admin" 41 # EXASTRO_PASSWORD: "sample-password" 42+ # EXASTRO_USERNAME: "your-ita-user-name" # Username created in Exastro IT Automation.(Remember to uncomment if using this) 43+ # EXASTRO_PASSWORD: "your-ita-user-password" # Password created in Exastro IT Automation.(Remember to uncomment if using this)
Configure Second OASE Agent definition name
45 imagePullSecrets: [] 46- nameOverride: "" 47+ nameOverride: "ita-ag-oase-2" # Exastro OASE Agent definition name 48 fullnameOverride: ""
Configure Second OASE Agent's matchLabels
64 persistence: 65 enabled: true 66 reinstall: false 67 accessMode: ReadWriteMany 68 size: 10Gi 69 volumeType: hostPath # e.g.) hostPath or AKS 70 storageClass: "-" # e.g.) azurefile or - (None) 71- # matchLabels: 72- # release: "stable" 73+ matchLabels: 74+ release: "pv-ita-ag-oase-2" # Specify the name of the presistent volume that will be used
Persistent volume settings¶
Features
危険
Example
1# pv-ita-ag-oase.yaml
2apiVersion: v1
3kind: PersistentVolume
4metadata:
5 name: pv-ita-ag-oase
6spec:
7 claimRef:
8 name: pvc-ita-ag-oase
9 namespace: exastro
10 capacity:
11 storage: 10Gi
12 accessModes:
13 - ReadWriteMany
14 persistentVolumeReclaimPolicy: Retain
15 hostPath:
16 path: /var/data/exastro-suite/exastro-agent/ita-ag-oase
17 type: DirectoryOrCreate
1# pv-ita-ag-oase-1.yaml
2apiVersion: v1
3kind: PersistentVolume
4metadata:
5 name: pv-ita-ag-oase-1
6spec:
7 claimRef:
8 name: pvc-ita-ag-oase-1
9 namespace: exastro
10 capacity:
11 storage: 10Gi
12 accessModes:
13 - ReadWriteMany
14 persistentVolumeReclaimPolicy: Retain
15 hostPath:
16 path: /var/data/exastro-suite/exastro-agent/ita-ag-oase-1
17 type: DirectoryOrCreate
1# pv-ita-ag-oase-2.yaml
2apiVersion: v1
3kind: PersistentVolume
4metadata:
5 name: pv-ita-ag-oase-2
6spec:
7 claimRef:
8 name: pvc-ita-ag-oase-2
9 namespace: exastro
10 capacity:
11 storage: 10Gi
12 accessModes:
13 - ReadWriteMany
14 persistentVolumeReclaimPolicy: Retain
15 hostPath:
16 path: /var/data/exastro-suite/exastro-agent/ita-ag-oase-2
17 type: DirectoryOrCreate
Install¶
注釈
Create Persistent volumes¶
# pv-ita-ag-oase.yaml
kubectl apply -f pv-ita-ag-oase.yaml
# Run the following for Multiple Agents (Different Pod)
# pv-ita-ag-oase-1.yaml
kubectl apply -f pv-ita-ag-oase-1.yaml
# pv-ita-ag-oase-2.yaml
kubectl apply -f pv-ita-ag-oase-2.yaml
# Confirm
kubectl get pv
NAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE
pv-ita-ag-oase 10Gi RWX Retain Available 6s
NAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE
pv-ita-ag-oase-1 10Gi RWX Retain Available 5s
pv-ita-ag-oase-2 10Gi RWX Retain Available 6s
Install¶
Use Helm command to install on Kubernetes environment.
helm install exastro-agent exastro/exastro-agent \ --namespace exastro --create-namespace \ --values exastro-agent.yaml
NAME: exastro-agent LAST DEPLOYED: Wed Feb 14 14:36:27 2024 NAMESPACE: exastro STATUS: deployed REVISION: 1 TEST SUITE: None
Confirm Installation status
# Fetch Pod list kubectl get po --namespace exastro | If running normally, the status will say "Running". | ※The user might have to wait a couple of minutes before the status changes to "Running".
NAME READY STATUS RESTARTS AGE ita-ag-oase-66cb7669c6-m2q8c 1/1 Running 0 16m
Use Helm command to install on Kubernetes environment.
helm install exastro-agent-1 exastro/exastro-agent \ --namespace exastro --create-namespace \ --values exastro-agent-1.yaml
NAME: exastro-agent-1 LAST DEPLOYED: Wed Feb 14 14:36:27 2024 NAMESPACE: exastro STATUS: deployed REVISION: 1 TEST SUITE: None
helm install exastro-agent-2 exastro/exastro-agent \ --namespace exastro --create-namespace \ --values exastro-agent-2.yaml
NAME: exastro-agent-2 LAST DEPLOYED: Wed Feb 14 14:36:27 2024 NAMESPACE: exastro STATUS: deployed REVISION: 1 TEST SUITE: None
- Check install status
# Pod の一覧を取得 kubectl get po --namespace exastro | If running normally, the status will say "Running". | ※The user might have to wait a couple of minutes before the status changes to "Running".
NAME READY STATUS RESTARTS AGE ita-ag-oase-1-66cb7669c6-m2q8c 1/1 Running 0 16m ita-ag-oase-2-787fb97f75-9s7xj 1/1 Running 0 13m
Update¶
Update preparation¶
警告
1# Check Repository information
2helm search repo exastro
1helm search repo exastro
2NAME CHART VERSION APP VERSION DESCRIPTION
3exastro/exastro 1.3.24 2.3.0 A Helm chart for Exastro. Exastro is an Open So...
4exastro/exastro-agent 1.0.3 2.3.0 A Helm chart for Exastro IT Automation. Exastro...
5exastro/exastro-it-automation 1.4.22 2.3.0 A Helm chart for Exastro IT Automation. Exastro...
6exastro/exastro-platform 1.7.14 1.7.0 A Helm chart for Exastro Platform. Exastro Plat...
1# Update Repository information
2helm repo update
1# Check Repository information
2helm search repo exastro
1helm search repo exastro
2NAME CHART VERSION APP VERSION DESCRIPTION
3exastro/exastro 1.4.3 2.4.0 A Helm chart for Exastro. Exastro is an Open So...
4exastro/exastro-agent 2.4.0 2.4.0 A Helm chart for Exastro IT Automation. Exastro...
5exastro/exastro-it-automation 2.4.1 2.4.0 A Helm chart for Exastro IT Automation. Exastro...
6exastro/exastro-platform 1.8.1 1.8.0 A Helm chart for Exastro Platform. Exastro Plat...
Update¶
Stop service¶
Pod 起動数の確認
作業前の Pod 起動数の確認をし、状態を記録します。RS_AG=`kubectl get deploy ita-ag-oase -o jsonpath='{@.spec.replicas}{"\n"}' --namespace exastro`
バックヤード処理の停止
Pod 起動数を 0 に変更し、データベースの更新を停止します。kubectl scale deployment ita-ag-oase --namespace exastro --replicas=0
Pod 起動数の確認
上記で停止した対象の Pod 数が 0 になっていることを確認kubectl get deployment --namespace exastro
NAME READY UP-TO-DATE AVAILABLE AGE ita-ag-oase 0/1 1 1 29m
Start Update¶
helm upgrade exastro-agent exastro/exastro-agent \
--namespace exastro \
--values exastro-agent.yaml
Release "exastro-agent" has been upgraded. Happy Helming!
NAME: exastro-agent
LAST DEPLOYED: Mon Apr 22 14:42:59 2024
NAMESPACE: exastro
STATUS: deployed
REVISION: 2
TEST SUITE: None
Restart service¶
サービス再開
サービス停止時に取得した各 Deployment の Pod 起動数を元に戻します。kubectl scale deployment ita-ag-oase --namespace exastro --replicas=${RS_AG}
Pod 起動数の確認
上記で起動した対象の Pod 数が元に戻りすべて READY になっていることを確認kubectl get deployment --namespace exastro
NAME READY UP-TO-DATE AVAILABLE AGE ita-ag-oase 1/1 1 1 29m
Check Update status¶
# Fetc Pod list
kubectl get po --namespace exastro
NAME READY STATUS RESTARTS AGE
ita-ag-oase-7ff9488b55-rrn58 1/1 Running 0 81s
Uninstall¶
Uninstall preparation¶
警告
Uninstall¶
Start Uninstall¶
helm uninstall exastro-agent --namespace exastro
release "exastro-agent" uninstalled
Delete persistent volumes¶
For Agents¶
警告
kubectl delete pv pv-ita-ag-oase
persistentvolume "pv-ita-ag-oase" deleted
Deleting Persistent data¶
For Agents¶
/var/data/exastro-suite/exastro-agent/ita-ag-oase
when the Persistent Volume was created.# Log in to control node that has persistent data
ssh user@contol.node.example
# Delete persistent data
sudo rm -rf /var/data/exastro-suite/exastro-agent/ita-ag-oase