File tree Expand file tree Collapse file tree 4 files changed +33
-71
lines changed Expand file tree Collapse file tree 4 files changed +33
-71
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 1.0.1
18
+ version : 1.0.2
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
22
22
# follow Semantic Versioning. They should reflect the version the application is using.
23
23
# It is recommended to use it with quotes.
24
- appVersion : " 1.16.0 "
24
+ appVersion : " 1.10.1 "
Original file line number Diff line number Diff line change 45
45
- name : cert
46
46
readOnly : true
47
47
mountPath : /tmp/k8s-webhook-server/serving-certs
48
+ {{- if .Values.agentId }}
49
+ - name : cluster-agent
50
+ image : " {{ .Values.agent.image.repository }}:{{ .Values.agent.image.tag | default " latest" }}"
51
+ env :
52
+ - name : CLOUD_ENDPOINT
53
+ value : " {{ .Values.agent.cloudEndpoint }}"
54
+ - name : AGENT_ID
55
+ value : " {{ .Values.agent.agentId }}"
56
+ - name : ENROLL_TOKEN
57
+ value : " {{ .Values.agent.enrollToken }}"
58
+ resources :
59
+ {{- toYaml .Values.agent.resources | nindent 12 }}
60
+ {{- end }}
48
61
- name : vector
49
62
image : docker.io/timberio/vector:nightly-2025-01-07-debian
50
63
env :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -57,3 +57,21 @@ controller:
57
57
secretName : tensor-fusion-webhook-secret
58
58
patch :
59
59
image : registry.k8s.io/ingress-nginx/kube-webhook-certgen:v1.5.0
60
+
61
+
62
+ agent :
63
+ enrollToken : " token-from-cloud"
64
+ agentId : ' org-from-cloud:env'
65
+ cloudEndpoint : " wss://api.tensor-fusion.ai/_ws"
66
+
67
+ image :
68
+ repository : tensorfusion/tensor-fusion-agent
69
+ tag : " latest"
70
+
71
+ resources :
72
+ requests :
73
+ cpu : 50m
74
+ memory : 64Mi
75
+ limits :
76
+ cpu : 1000m
77
+ memory : 512Mi
You can’t perform that action at this time.
0 commit comments