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

[GitOps Catalog] Add Cilium to gitops-catalog #162

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
26 changes: 26 additions & 0 deletions cilium/cilium.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: <CLUSTER_NAME>-cilium-components
namespace: argocd
annotations:
argocd.argoproj.io/sync-wave: '100'
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
repoURL: <GITOPS_REPO_URL>
path: <REGISTRY_PATH>/components/cilium
targetRevision: HEAD
destination:
name: in-cluster
namespace: cilium
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true

23 changes: 23 additions & 0 deletions cilium/components/cilium/application.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: <CLUSTER_NAME>-cilium
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
destination:
namespace: cilium
name: <CLUSTER_DESTINATION>
source:
repoURL: https://helm.cilium.io/
targetRevision: 1.16.1 # Update this to the desired version, this is the current lastest (stable) version on the Cilium Helm repository
chart: cilium
project: default
syncPolicy:
syncOptions:
- CreateNamespace=true
automated:
prune: true
selfHeal: true
7 changes: 7 additions & 0 deletions index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ apps:
description: "A Kubernetes controller & set of CRDs which provide advanced deployment capabilities such as blue-green, canary, canary analysis, experimentation, & progressive delivery features to Kubernetes."
category: CI/CD

- name: cilium
displayName: Cilium
website: "https://cilium.io/"
imageUrl: "https://raw.githubusercontent.com/kubefirst/gitops-catalog/main/logos/cilium.svg"
description: "Cilium is an open-source, cloud-native tool for managing, securing, and monitoring network connectivity between workloads, powered by the innovative Kernel technology eBPF."
category: Observability

- name: cluster-autoscaler-civo
displayName: Civo Cluster Autoscaler
website: "https://github.com/kubernetes/autoscaler/tree/master/cluster-autoscaler"
Expand Down
Loading