https://github.com/tankibaj/private-oci-helm-chart-repo-with-argocd
Example of Private OCI Helm Chart Repo with Argo CD
https://github.com/tankibaj/private-oci-helm-chart-repo-with-argocd
Last synced: 3 months ago
JSON representation
Example of Private OCI Helm Chart Repo with Argo CD
- Host: GitHub
- URL: https://github.com/tankibaj/private-oci-helm-chart-repo-with-argocd
- Owner: tankibaj
- Created: 2023-05-23T13:19:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-23T15:40:08.000Z (over 2 years ago)
- Last Synced: 2025-05-16T10:09:50.510Z (5 months ago)
- Language: Mustache
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Private OCI Helm Chart Repo with Argo CD
## Overview
The `private-oci-helm-chart-repo-with-argocd` repository is an example project that demonstrates the use of Helm Charts with the OCI (Open Container Initiative) standard. This repository is particularly focused on how to manage and use private Helm Charts in a Kubernetes environment using ArgoCD.This repository currently contains several files, including:
- `.github/workflows`: Contains GitHub Action workflows.
- `charts/guestbook`: Contains Helm charts for the `guestbook` application.
- `guestbook.yaml`: Contains the ArgoCD deployment configuration for the `guestbook` application.
- `argocd-repository-using-argocd-cli.sh`: Contains a shell script to add helm oci chart repository to argocd.
- `argocd-repository-manifest.yaml`: Contains the Kubernetes secrets configuration for the argocd repository of helm oci chart.## Getting started
- Create an argocd repository for the private oci helm chart
```bash
kubectl apply -f argocd-repository-manifest.yaml
```- Deploy argocd guestbook application from the private oci helm chart
```bash
kubectl apply -f guestbook.yaml
```