-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathconfig.yml.example
More file actions
27 lines (19 loc) · 1.07 KB
/
config.yml.example
File metadata and controls
27 lines (19 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Kubernetes control node
k8s_host: control_node_hostname # Put `localhost` if running on cluster; put `kind` if using kind cluster; put a hostname if managing a remote cluster, e.g., apt035.apt.emulab.net
# Kubernetes context configuration (optional, for advanced users)
# Priority 1: If specified, this context will be used for all Helm operations
# kube_context: my-custom-context
# kind cluster name (only used when k8s_host is "kind" and kube_context is not set)
# Priority 2: When k8s_host is "kind", this will construct context as "kind-{kind_cluster_name}"
kind_cluster_name: kind # Name of your kind cluster (default: "kind")
# Priority 3: If neither kube_context nor k8s_host="kind" is set,
# Helm will use the default kubectl context (no --kube-context flag)
k8s_user: your_username
# ssh key path
ssh_key_path: ~/.ssh/id_rsa # Replace with your ssh key path
# Directory where data files are stored
data_dir: data
# Flag to enable/disable qualitative evaluation (makes LLM calls)
qualitative_eval: false
# Flag to enable/disable printing the session
print_session: false