Skip to content

Fix: Typo in Helm chart readme service name for API Ingress example #85

Fix: Typo in Helm chart readme service name for API Ingress example

Fix: Typo in Helm chart readme service name for API Ingress example #85

Workflow file for this run

# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
#
# Generated on 2025-09-26T09:19:58Z by kres fdbc9fc.
concurrency:
group: helm-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
"on":
push:
tags:
- v*
pull_request:
branches:
- main
- release-*
paths:
- deploy/helm/**
name: helm
jobs:
default:
permissions:
actions: read
contents: write
id-token: write
issues: read
packages: write
pull-requests: read
runs-on:
group: generic
steps:
- name: gather-system-info
id: system-info
uses: kenchan0130/[email protected]
continue-on-error: true
- name: print-system-info
run: |
MEMORY_GB=$((${{ steps.system-info.outputs.totalmem }}/1024/1024/1024))
OUTPUTS=(
"CPU Core: ${{ steps.system-info.outputs.cpu-core }}"
"CPU Model: ${{ steps.system-info.outputs.cpu-model }}"
"Hostname: ${{ steps.system-info.outputs.hostname }}"
"NodeName: ${NODE_NAME}"
"Kernel release: ${{ steps.system-info.outputs.kernel-release }}"
"Kernel version: ${{ steps.system-info.outputs.kernel-version }}"
"Name: ${{ steps.system-info.outputs.name }}"
"Platform: ${{ steps.system-info.outputs.platform }}"
"Release: ${{ steps.system-info.outputs.release }}"
"Total memory: ${MEMORY_GB} GB"
)
for OUTPUT in "${OUTPUTS[@]}";do
echo "${OUTPUT}"
done
continue-on-error: true
- name: checkout
uses: actions/checkout@v5
- name: Unshallow
run: |
git fetch --prune --unshallow
- name: Install Helm
uses: azure/setup-helm@v4
- name: Install cosign
if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@v3
- name: Login to registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
password: ${{ secrets.GITHUB_TOKEN }}
registry: ghcr.io
username: ${{ github.repository_owner }}
- name: Lint chart
if: github.event_name == 'pull_request'
run: |
helm lint deploy/helm/omni
- name: Template chart
if: github.event_name == 'pull_request'
run: |
helm template -f deploy/helm/omni/values.yaml omni deploy/helm/omni
- name: helm login
if: startsWith(github.ref, 'refs/tags/')
env:
HELM_CONFIG_HOME: /var/tmp/.config/helm
run: |
helm registry login -u ${{ github.repository_owner }} -p ${{ secrets.GITHUB_TOKEN }} ghcr.io
- name: Release chart
if: startsWith(github.ref, 'refs/tags/')
env:
HELM_CONFIG_HOME: /var/tmp/.config/helm
run: |
make helm-release