Charts / Update policies #11
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) Nicolas Lamirault <nicolas.lamirault@gmail.com> | |
# | |
# 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. | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Charts / Update policies | |
on: | |
workflow_dispatch: | |
inputs: | |
# version: | |
# description: "Policies version" | |
# required: true | |
loglevel: | |
description: "Log level" | |
required: true | |
default: info | |
python-version: | |
description: "Python runtime" | |
required: true | |
default: "3.8" | |
poetry-version: | |
description: "Poetry" | |
required: true | |
default: "1.1.12" | |
permissions: | |
contents: read | |
jobs: | |
kyverno: | |
permissions: | |
contents: write # for peter-evans/create-pull-request to create branch | |
pull-requests: write # for peter-evans/create-pull-request to create a PR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
- uses: actions/setup-python@v4.7.0 | |
with: | |
python-version: ${{ github.event.inputs.python-version }} | |
- name: Run image | |
uses: abatilo/actions-poetry@v2.3.0 | |
with: | |
poetry-version: ${{ github.event.inputs.poetry-version }} | |
- name: Install dependencies | |
run: | | |
poetry install | |
- name: Retrieve version | |
id: version | |
run: | | |
version=$(grep 'version = ' ./hack/policies.py | awk -F'"' '{ print $2 }') | |
echo "::set-output name=POLICIES_VERSION::$version" | |
- name: Kyverno policies | |
id: kyverno-policies | |
run: | | |
poetry run ./hack/policies.py portefaix-kyverno --log ${{ github.event.inputs.loglevel }} | |
- name: Create pull request for charts updates | |
id: cpr | |
uses: peter-evans/create-pull-request@v5.0.2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: "policies/update-portefaix-kyverno-${{ steps.version.outputs.POLICIES_VERSION }}" | |
delete-branch: true | |
title: "Update Kyverno policies to portefaix-policies-${{ steps.version.outputs.POLICIES_VERSION }}" | |
signoff: true | |
draft: false | |
committer: "Nicolas Lamirault <nlamirault@users.noreply.github.com>" | |
author: "Nicolas Lamirault <nlamirault@users.noreply.github.com>" | |
assignees: "nlamirault" | |
commit-message: "Update: portefaix-policies set to ${{ steps.version.outputs.POLICIES_VERSION }} for Portefaix Kyverno" | |
body: | | |
- Portefaix Policies set to ${{ steps.version.outputs.POLICIES_VERSION }} | |
- Auto-generated by [create-pull-request][1] | |
[1]: https://github.com/peter-evans/create-pull-request | |
Signed-off-by: Nicolas Lamirault <nlamirault@users.noreply.github.com> | |
labels: | | |
kind/feature | |
lifecycle/active | |
status/review_needed | |
area/helm | |
priority/medium | |
- name: Check outputs | |
run: | | |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" | |
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}" |