From 56b0749fd7e14a447e70154d48187fcf9c4609d2 Mon Sep 17 00:00:00 2001 From: Tom Kerkhove Date: Fri, 23 Jun 2023 15:30:41 +0200 Subject: [PATCH] fix(core): Add missing ASCII art (#484) --- keda/templates/NOTES.txt | 41 +++++++++++++++++++++++++++++++--------- keda/values.yaml | 3 +++ 2 files changed, 35 insertions(+), 9 deletions(-) diff --git a/keda/templates/NOTES.txt b/keda/templates/NOTES.txt index 641b941f..79af3b59 100644 --- a/keda/templates/NOTES.txt +++ b/keda/templates/NOTES.txt @@ -1,6 +1,25 @@ -===================================================================================== -KEDA - Kubernetes Event Driven Autoscaling -===================================================================================== +{{- if .Values.asciiArt }} +:::^. .::::^: ::::::::::::::: .:::::::::. .^. +7???~ .^7????~. 7??????????????. :?????????77!^. .7?7. +7???~ ^7???7~. ~!!!!!!!!!!!!!!. :????!!!!7????7~. .7???7. +7???~^7????~. :????: :~7???7. :7?????7. +7???7????!. ::::::::::::. :????: .7???! :7??77???7. +7????????7: 7???????????~ :????: :????: :???7?5????7. +7????!~????^ !77777777777^ :????: :????: ^???7?#P7????7. +7???~ ^????~ :????: :7???! ^???7J#@J7?????7. +7???~ :7???!. :????: .:~7???!. ~???7Y&@#7777????7. +7???~ .7???7: !!!!!!!!!!!!!!! :????7!!77????7^ ~??775@@@GJJYJ?????7. +7???~ .!????^ 7?????????????7. :?????????7!~: !????G@@@@@@@@5??????7: +::::. ::::: ::::::::::::::: .::::::::.. .::::JGGGB@@@&7::::::::: + ?@@#~ + P@B^ + :&G: + !5. + . +{{- end -}} + +Kubernetes Event-driven Autoscaling (KEDA) - Application autoscaling made simple. + Get started by deploying Scaled Objects to your cluster: - Information about Scaled Objects : https://keda.sh/docs/latest/concepts/ - Samples: https://github.com/kedacore/samples @@ -20,23 +39,27 @@ Get details about a deployed ScaledObject: Get an overview of the Horizontal Pod Autoscalers (HPA) that KEDA is using behind the scenes: kubectl get hpa [--all-namespaces] [--namespace ] -------------------------------------------------------------------------------------- - {{- if .Values.prometheus.operator.serviceMonitor.relabellings}} +------------------------------------------------------------------------------------- WARNING - prometheus.operator.serviceMonitor.relabellings is deprecated, please migrate to prometheus.operator.serviceMonitor.relabelings instead. +------------------------------------------------------------------------------------- {{- end }} {{- if .Values.prometheus.metricServer.serviceMonitor.relabellings}} WARNING - prometheus.metricServer.serviceMonitor.relabellings is deprecated, please migrate to prometheus.metricServer.serviceMonitor.relabelings instead. {{- end }} {{- if .Values.prometheus.webhooks.serviceMonitor.relabellings}} +------------------------------------------------------------------------------------- WARNING - prometheus.webhooks.serviceMonitor.relabellings is deprecated, please migrate to prometheus.webhooks.serviceMonitor.relabelings instead. +------------------------------------------------------------------------------------- {{- end }} - {{- if lt .Capabilities.KubeVersion.Minor "25" }} +------------------------------------------------------------------------------------- WARNING - Running on unsupported Kubernetes version "1.{{.Capabilities.KubeVersion.Minor}}". KEDA 2.11 is supported and tested on Kubernetes "1.25" or higher. See https://keda.sh/docs/2.11/operate/cluster/ for details. +------------------------------------------------------------------------------------- {{- end }} -For more information on running KEDA, visit: -https://github.com/kedacore/keda/ -===================================================================================== \ No newline at end of file +Learn more about KEDA: +- Documentation: https://keda.sh/ +- Support: https://keda.sh/support/ +- File an issue: https://github.com/kedacore/keda/issues/new/choose diff --git a/keda/values.yaml b/keda/values.yaml index 76f9e082..82d6fb82 100644 --- a/keda/values.yaml +++ b/keda/values.yaml @@ -629,3 +629,6 @@ extraObjects: [] # spec: # podIdentity: # provider: aws-eks + +# -- Capability to turn on/off ASCII art in Helm installation notes +asciiArt: true \ No newline at end of file