From ee7eded251fcc449bbe7a12bd5b5d8ac1a1e1756 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Harper?= Date: Mon, 28 Aug 2023 18:41:37 -0400 Subject: [PATCH] add kutt to the GitOps Catalog (#17) --- index.yaml | 25 +++++++++++++++++++++++++ kutt/application.yaml | 23 +++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 kutt/application.yaml diff --git a/index.yaml b/index.yaml index 4216403..bb9882c 100644 --- a/index.yaml +++ b/index.yaml @@ -53,6 +53,31 @@ apps: categories: - Observability + - name: kutt + displayName: Kutt + website: "https://github.com/thedevs-network/kutt" + secretKeys: + - name: admin.emails + label: Comma seperated list of email addresses that can access admin actions on settings page + - name: config.disallowAnonymousLinks + label: "true or false to Disable anonymous link creation" + - name: mail-from + label: The email address Kutt will send emails from + - name: mail-host + label: The host of the external SMTP server that Kutt should use to send emails + - name: mail-password + label: The password to authenticate to the SMTP host when sending emails + - name: mail-port + label: The port used to connect to the SMTP host + - name: mail-secure + label: "true or false. If true the connection will use TLS when connecting to server. If false (the default) then TLS is used if server supports the STARTTLS extension. In most cases set this value to true if you are connecting to port 465. For port 587 or 25 keep it false" + - name: mail-username + label: The username to authenticate to the SMTP host when sending emails + imageUrl: "https://kutt.it/images/logo.svg" + description: "Kutt is a modern URL shortener with support for custom domains. Shorten URLs, manage your links and view the click rate statistics." + categories: + - Applications + - name: kyverno displayName: Kyverno website: "https://github.com/kyverno/kyverno" diff --git a/kutt/application.yaml b/kutt/application.yaml new file mode 100644 index 0000000..d91bc84 --- /dev/null +++ b/kutt/application.yaml @@ -0,0 +1,23 @@ +--- +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: kutt + namespace: argocd +spec: + project: default + source: + chart: kutt + repoURL: https://christianknell.github.io/helm-charts + targetRevision: 2.10.4 + helm: + releaseName: my-release + destination: + server: 'https://kubernetes.default.svc' + namespace: kutt + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true