forked from helm/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Really deprecate Sematext Agent Helm chart (helm#23335)
Signed-off-by: Ciprian Hacman <[email protected]> Signed-off-by: Miguel Mingorance <[email protected]>
- Loading branch information
Ciprian Hacman
authored and
Miguel Mingorance
committed
Aug 28, 2020
1 parent
9db4267
commit eb1bf62
Showing
2 changed files
with
6 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
apiVersion: v1 | ||
appVersion: "1.0" | ||
version: 1.0.30 | ||
description: Helm chart for deploying Sematext Agent and Logagent to Kubernetes | ||
version: 1.0.31 | ||
deprecated: true | ||
description: DEPRECATED Helm chart for deploying Sematext Agent and Logagent to Kubernetes | ||
keywords: | ||
- sematext | ||
- observability | ||
|
@@ -11,7 +12,4 @@ keywords: | |
- ebpf | ||
home: https://sematext.com/cloud | ||
icon: https://cdn.sematext.com/octi-square-logo.png | ||
maintainers: | ||
- name: hakman | ||
email: [email protected] | ||
name: sematext-agent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,4 @@ | ||
{{- if and (not .Values.containerToken) (not .Values.logsToken) -}} | ||
This chart has been DEPRECATED and moved to its new home: | ||
|
||
############################################################################### | ||
# ERROR: Please provide containerToken and/or logsToken! # | ||
############################################################################### | ||
|
||
Depending on which region you want to use, create a container and/or logs apps | ||
to get your tokens. Then, start the app for monitoring with: | ||
|
||
helm install st-agent \ | ||
--set sematext.containerToken=YOUR_CONTAINER_TOKEN \ | ||
--set sematext.infraToken=YOUR_INFRA_TOKEN \ | ||
--set region={{ .Values.region }} \ | ||
stable/sematext-agent | ||
|
||
Or start the app to ship logs with: | ||
|
||
helm install st-agent \ | ||
--set logsToken=YOUR_LOGS_TOKEN \ | ||
--set region={{ .Values.region }} \ | ||
stable/sematext-agent | ||
|
||
Or start the app with both: | ||
|
||
helm install st-agent \ | ||
--set containerToken=YOUR_CONTAINER_TOKEN \ | ||
--set sematext.infraToken=YOUR_INFRA_TOKEN \ | ||
--set logsToken=YOUR_LOGS_TOKEN \ | ||
--set region={{ .Values.region }} \ | ||
stable/sematext-agent | ||
|
||
Please check the README file for all available parameters. | ||
|
||
{{- else if not .Values.logsToken -}} | ||
|
||
Missing logsToken! You will only receive metrics and events. | ||
{{ if eq .Values.region "US" }} | ||
After a few minutes check your app at https://apps.sematext.com/ui/monitoring | ||
{{ else if eq .Values.region "EU" }} | ||
After a few minutes check your app at https://apps.eu.sematext.com/ui/monitoring | ||
{{ end }} | ||
|
||
{{- else if not .Values.containerToken -}} | ||
|
||
Missing containerToken! You will only receive logs. | ||
{{ if eq .Values.region "US" }} | ||
After a few minutes check your app at https://apps.sematext.com/ui/logs | ||
{{ else if eq .Values.region "EU" }} | ||
After a few minutes check your app at https://apps.eu.sematext.com/ui/logs | ||
{{ end }} | ||
|
||
{{- else -}} | ||
|
||
You are all set! | ||
{{ if eq .Values.region "US" }} | ||
After a few minutes check your metrics app at https://apps.sematext.com/ui/monitoring | ||
or logs at https://apps.sematext.com/ui/logs | ||
{{ else if eq .Values.region "EU" }} | ||
After a few minutes check your metrics app at https://apps.eu.sematext.com/ui/monitoring | ||
or logs at https://apps.eu.sematext.com/ui/logs | ||
{{ end }} | ||
|
||
{{- end -}} | ||
* GitHub repo: https://github.com/sematext/helm-charts/ | ||
* Charts repo: https://cdn.sematext.com/helm-charts/ |