chore: upgrade pulsar image to 3.2 #940
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright (c) 2019 - 2024 StreamNative, Inc.. All Rights Reserved. | |
# | |
name: Precommit - SN-Platform Helm Chart (Basic Template) | |
on: | |
pull_request: | |
branches: | |
- '*' | |
paths: | |
- 'charts/sn-platform/**' | |
- '.github/workflows/sn-platform.yml' | |
jobs: | |
lint-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Fetch history | |
run: git fetch --prune --unshallow | |
- name: Lint chart | |
id: lint | |
uses: helm/[email protected] | |
with: | |
command: lint | |
- name: Install Helm | |
uses: azure/setup-helm@v3 | |
id: install | |
with: | |
version: 3.7.2 | |
- name: Install chart | |
run: | | |
helm dependency update charts/sn-platform | |
helm template pulsar -f .ci/clusters/values-datadog.yaml charts/sn-platform |