Making changes when using Kubernetes
Introduction
TigerGraph Kubernetes build can be found at the following link: ecosys/k8s at master ยท tigergraph/ecosys
Instructions
You may make changes to your TigerGraph deployment by modifying the following files.
ecosys/k8s/Dockerfile
This file sets up the initial TigerGraph install on linux. You may set your username and password here.
echo 'tigergraph:PASSWORD' | chpasswd && \
You may preconfigure your TigerGraph settings:
For a list of TigerGraph config entries, you can use the command gadmin config list entry
on any TigerGraph node.
List any config entry under init_tg_cfg: Example: RESTPP.Factory.EnableAuth: true
data:
init_tg_cfg: |
System.HostList: [{"ID":"m1","Hostname":"127.0.0.1","Region":""}]
System.SSH.User.Username: tigergraph
System.SSH.User.Password:
System.SSH.User.Privatekey: /home/tigergraph/.ssh/tigergraph_rsa
System.DataRoot: /home/tigergraph/tigergraph/data
System.AppRoot: /home/tigergraph/tigergraph/app/3.2.0
System.LogRoot: /home/tigergraph/tigergraph/log