-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathskaffold.example.env
More file actions
31 lines (24 loc) · 1.08 KB
/
skaffold.example.env
File metadata and controls
31 lines (24 loc) · 1.08 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
28
29
30
31
# Skaffold environment variables - EXAMPLE FILE
#
# To use this file:
# 1. Copy this file to 'skaffold.env': cp skaffold.example.env skaffold.env
# 2. Update the values below with your actual configuration
# 3. The skaffold.env file is gitignored and won't be committed
#
# This file is loaded automatically by Skaffold when running skaffold commands.
# Temporal namespace for helloworld deployment
TEMPORAL_NAMESPACE=your-namespace-here
# Temporal server address.
# - mTLS: use the namespace-specific endpoint, e.g. ${TEMPORAL_NAMESPACE}.tmprl.cloud:7233
# - API key: use the regional endpoint, e.g. us-east-1.aws.api.temporal.io:7233
# (the namespace-specific endpoint requires mTLS and rejects API key connections)
TEMPORAL_ADDRESS=${TEMPORAL_NAMESPACE}.tmprl.cloud:7233
# Set one of mTLS or API key names
# Temporal mTLS secret name
TEMPORAL_MTLS_SECRET_NAME=""
# K8s secret storing the Temporal API key
TEMPORAL_API_KEY_SECRET_NAME=""
# Secret key whose corresponding value is the API key
TEMPORAL_API_KEY_SECRET_KEY=""
# Kubernetes context to use for deployment
SKAFFOLD_KUBE_CONTEXT=minikube