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
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 1.0.1
18+ version : 1.0.2
1919
2020# This is the version number of the application being deployed. This version number should be
2121# incremented each time you make changes to the application. Versions are not expected to
2222# follow Semantic Versioning. They should reflect the version the application is using.
2323# 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 4545 - name : cert
4646 readOnly : true
4747 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 }}
4861 - name : vector
4962 image : docker.io/timberio/vector:nightly-2025-01-07-debian
5063 env :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -57,3 +57,21 @@ controller:
5757 secretName : tensor-fusion-webhook-secret
5858 patch :
5959 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