Skip to content

Commit

Permalink
add kutt to the GitOps Catalog (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
fharper authored Aug 28, 2023
1 parent e828c7d commit ee7eded
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
25 changes: 25 additions & 0 deletions index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
23 changes: 23 additions & 0 deletions kutt/application.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ee7eded

Please sign in to comment.