Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c62e37d16f | |||
| 7049cf5b70 | |||
| 199d6bf2ac |
@@ -65,10 +65,10 @@ jobs:
|
|||||||
if: github.event_name == 'release'
|
if: github.event_name == 'release'
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up Helm
|
- name: Set up Helm
|
||||||
uses: azure/setup-helm@v3
|
uses: azure/setup-helm@v4.2.0
|
||||||
with:
|
with:
|
||||||
version: v3.11.1
|
version: v3.11.1
|
||||||
|
|
||||||
@@ -85,14 +85,14 @@ jobs:
|
|||||||
helm package ${{ env.CHART_PATH }}
|
helm package ${{ env.CHART_PATH }}
|
||||||
|
|
||||||
- name: Run chart-releaser
|
- name: Run chart-releaser
|
||||||
uses: helm/chart-releaser-action@v1.5.0
|
uses: helm/chart-releaser-action@v1.6.0
|
||||||
env:
|
env:
|
||||||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
with:
|
with:
|
||||||
charts_dir: charts
|
charts_dir: charts
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
- name: Login to GitHub Container Registry
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
|
|||||||
@@ -10,11 +10,12 @@ This Helm chart deploys the Postiz application on a Kubernetes cluster using the
|
|||||||
|
|
||||||
## Installing the Chart
|
## Installing the Chart
|
||||||
|
|
||||||
|
The Postiz helm chart registry uses the OCI format, not HTTP, which means you do not need to do a `helm repo add` to install the chart. You can install the chart directly from the GitHub repository.
|
||||||
|
|
||||||
To install the chart with the release name `postiz-app`:
|
To install the chart with the release name `postiz-app`:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ helm repo add postiz https://github.com/gitroomhq/postiz-helmchart
|
$ helm install postiz oci://ghcr.io/gitroomhq/postiz-helmchart/charts/postiz-app
|
||||||
$ helm install postiz-app postiz/postiz
|
|
||||||
```
|
```
|
||||||
|
|
||||||
The command deploys Postiz on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
The command deploys Postiz on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||||
@@ -23,7 +24,7 @@ The command deploys Postiz on the Kubernetes cluster in the default configuratio
|
|||||||
|
|
||||||
## Uninstalling the Chart
|
## Uninstalling the Chart
|
||||||
|
|
||||||
To uninstall/delete the `postiz-app` deployment:
|
To uninstall/delete the `postiz` deployment:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ helm delete postiz-app
|
$ helm delete postiz-app
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ apiVersion: v2
|
|||||||
name: postiz-app
|
name: postiz-app
|
||||||
description: A Social Media Scheduling App
|
description: A Social Media Scheduling App
|
||||||
type: application
|
type: application
|
||||||
version: 1.0.0 # Chart Version
|
version: 1.0.1
|
||||||
appVersion: "1.2.0"
|
appVersion: "1.3.0"
|
||||||
keywords:
|
keywords:
|
||||||
- social media
|
- social media
|
||||||
- marketing
|
- marketing
|
||||||
|
|||||||
Reference in New Issue
Block a user