Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(charts): mirror new charts from several OSS communities #24

Merged
merged 3 commits into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions charts/kube-argo/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# Remove release files
release.json
# Remove ignore files
.gitignore
.helmignore

# Remove all shell scripts
*.sh

# Remove all resulting packages
./*.tgz
./.
./..
.cache
# Just in case if someone forgets to remove their local.properties file
*.properties

# Internal cluster values
values/

# Rendered templates
rendered/

# Got it from the Internet
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
.helm-docs
.helm_output
*.md
.env
Makefile
*.lock
examples/
unittests/
tests/
values.schema.json
schema.values.json
# Docs related
#README.md
LICENSE

ct.yaml
41 changes: 41 additions & 0 deletions charts/kube-argo/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
apiVersion: v2
name: kube-argo-charts
description: A Helm chart for deploying Argo projects in Kubernetes
type: application
version: 0.1.0
appVersion: 1.0.0
kubeVersion: ">=1.19.0-0"
icon: https://avatars.githubusercontent.com/u/878437?s=200&v=4
home: https://jetbrains.com/
annotations:
category: Infrastructure
keywords:
- jetbrains
- github
- continuous-integration
- runners
- ark
maintainers:
- name: JetBrains
url: https://www.jetbrains.com/support
dependencies:
- name: argo-cd
alias: argo
repository: https://argoproj.github.io/argo-helm
version: 6.7.3
condition: argo.install
- name: argo-events
alias: events
repository: https://argoproj.github.io/argo-helm
version: 2.4.4
condition: events.install
- name: argo-rollouts
alias: rollouts
repository: https://argoproj.github.io/argo-helm
version: 2.35.1
condition: rollouts.install
- name: argo-workflows
alias: workflows
repository: https://argoproj.github.io/argo-helm
version: 0.41.0
condition: workflows.install
1 change: 1 addition & 0 deletions charts/kube-argo/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include ../../lib/Makefiles/Helm.mk
19 changes: 19 additions & 0 deletions charts/kube-argo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# kube-argo

This chart is a mirror of [these charts](https://github.com/argoproj/argo-helm/tree/main/charts).
From the original docs:

_Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes._

## Prerequisites

- Kubernetes 1.19+
- Helm 3+

## Documentation

https://argo-cd.readthedocs.io/en/stable/

## Parameters

Checkout the main [values.yaml](./values.yaml) for the full list of available parameters.
19 changes: 19 additions & 0 deletions charts/kube-argo/release.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"metadata": {
"name": "kube-argo",
"description": "Find more details about this chart in its Chart.yaml file."
},
"spec": {
"repositories": [
{
"name": "library",
"description": "Repository for Kubernetes charts",
"url": "registry.jetbrains.team/p/helm/library",
"type": "oci",
"env": {
"nameSelector": "HELM_CHARTS_REGISTRY_2"
}
}
]
}
}
5 changes: 5 additions & 0 deletions charts/kube-argo/values.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"title": "Chart Values",
"type": "object",
"properties": {}
}
Loading
Loading