forked from agntcy/slim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontroller-values.yaml
More file actions
52 lines (43 loc) · 1.48 KB
/
controller-values.yaml
File metadata and controls
52 lines (43 loc) · 1.48 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Copyright AGNTCY Contributors (https://github.com/agntcy)
# SPDX-License-Identifier: Apache-2.0
# Default values for slim-control-plane.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
# This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/
replicaCount: 1
# This sets the container image more information can be found here: https://kubernetes.io/docs/concepts/containers/images/
image:
repository: "ghcr.io/agntcy/slim/control-plane"
# This sets the pull policy for images.
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
# This is for the secretes for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
imagePullSecrets: []
# This is to override the chart name.
nameOverride: ""
fullnameOverride: "slim-control"
config:
northbound:
httpHost: 0.0.0.0
httpPort: "{{ .Values.service.north.port }}"
southbound:
httpHost: 0.0.0.0
httpPort: "{{ .Values.service.south.port }}"
tls:
useSpiffe: true
spire:
socketPath: "unix:///run/spire/agent-sockets/api.sock"
logging:
level: DEBUG
spire:
enabled: true
trustedDomains:
- spiffe://cluster-a.example
- spiffe://cluster-b.example
service:
type: LoadBalancer
south:
port: 50052
north:
port: 50051