Skip to content

[Improvement] Add an image pull secret to Jupyter deployment (#160) #151

[Improvement] Add an image pull secret to Jupyter deployment (#160)

[Improvement] Add an image pull secret to Jupyter deployment (#160) #151

Workflow file for this run

name: Release Charts
on:
push:
branches:
- development
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: azure/setup-helm@v1
with:
version: "v3.9.1"
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Add Helm Repos
run: |
helm repo add stable https://charts.helm.sh/stable
helm repo add nuclio https://nuclio.github.io/nuclio/charts
helm repo add v3io-stable https://v3io.github.io/helm-charts/stable
helm repo add minio https://charts.min.io/
helm repo add spark-operator https://kubeflow.github.io/spark-operator
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
notify_mlefi:
runs-on: ubuntu-latest
steps:
- name: Send repository dispatch event
run: |
curl -X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: token ${{ secrets.MLEfiGHTrigger }}" \
https://api.github.com/repos/iguazio/mlefi/dispatches \
-d '{"event_type":"helm-release","client_payload":{"chart_version":"${{ github.event.release.tag_name }}"}}'