-
Notifications
You must be signed in to change notification settings - Fork 635
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #873 from elezar/fix-caps
Add CAP_SYS_ADMIN if volume-mounts list strategy is included
- Loading branch information
Showing
779 changed files
with
698,062 additions
and
34 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,37 +12,35 @@ | |
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Run this workflow on new tags | ||
name: Publish Helm Chart | ||
name: Helm | ||
|
||
on: | ||
release: | ||
pull_request: | ||
types: | ||
- published | ||
- opened | ||
- synchronize | ||
branches: | ||
- main | ||
- release-* | ||
push: | ||
branches: | ||
- main | ||
- release-* | ||
|
||
jobs: | ||
update-helm-charts: | ||
name: Update gh-pages branch helm charts and index | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
env: | ||
HELM_REPO_PATH: releases/helm-${{ github.event.release.tag_name }}/ | ||
steps: | ||
- name: Install Helm | ||
uses: azure/[email protected] | ||
with: | ||
version: 3.14.4 | ||
|
||
- name: Check out repo | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Update helm index | ||
- name: Get Golang version | ||
id: vars | ||
run: | | ||
git config user.name "Github Actions" | ||
git config user.email "[email protected]" | ||
./hack/update-helm-index.sh --helm-repo-path $HELM_REPO_PATH --version ${{ github.event.release.tag_name }} | ||
- name: Push updated Helm charts and index to gh-pages branch | ||
run: | | ||
git -C $HELM_REPO_PATH push https://${GITHUB_ACTOR}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} gh-pages | ||
GOLANG_VERSION=$(./hack/golang-version.sh) | ||
echo "GOLANG_VERSION=${GOLANG_VERSION##GOLANG_VERSION ?= }" >> $GITHUB_ENV | ||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ env.GOLANG_VERSION }} | ||
- run: make test-helm |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Copyright 2024 NVIDIA CORPORATION | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Run this workflow on new tags | ||
name: Publish Helm Chart | ||
|
||
on: | ||
release: | ||
types: | ||
- published | ||
|
||
jobs: | ||
update-helm-charts: | ||
name: Update gh-pages branch helm charts and index | ||
runs-on: ubuntu-latest | ||
env: | ||
HELM_REPO_PATH: releases/helm-${{ github.event.release.tag_name }}/ | ||
steps: | ||
- name: Install Helm | ||
uses: azure/[email protected] | ||
with: | ||
version: 3.14.4 | ||
|
||
- name: Check out repo | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Update helm index | ||
run: | | ||
git config user.name "Github Actions" | ||
git config user.email "[email protected]" | ||
./hack/update-helm-index.sh --helm-repo-path $HELM_REPO_PATH --version ${{ github.event.release.tag_name }} | ||
- name: Push updated Helm charts and index to gh-pages branch | ||
run: | | ||
git -C $HELM_REPO_PATH push https://${GITHUB_ACTOR}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} gh-pages |
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
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
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
Oops, something went wrong.