Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Publish to artifacthub via artifacthub branch #8

Merged
merged 2 commits into from Mar 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Expand Up @@ -11,7 +11,7 @@ jobs:

test:
name: run tests and linters
uses: kubewarden/github-actions/.github/workflows/reusable-test-policy-rego.yml@v3.0.4
uses: kubewarden/github-actions/.github/workflows/reusable-test-policy-rego.yml@v3.1.0

release:
needs: test
Expand All @@ -23,6 +23,6 @@ jobs:
# Required by cosign keyless signing
id-token: write

uses: kubewarden/github-actions/.github/workflows/reusable-release-policy-rego.yml@v3.0.4
uses: kubewarden/github-actions/.github/workflows/reusable-release-policy-rego.yml@v3.1.0
with:
oci-target: ghcr.io/${{ github.repository_owner }}/policies/disallow-service-loadbalancer
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -3,4 +3,4 @@ name: Continuous integration
jobs:
test:
name: run tests and linters
uses: kubewarden/github-actions/.github/workflows/reusable-test-policy-rego.yml@v3.0.4
uses: kubewarden/github-actions/.github/workflows/reusable-test-policy-rego.yml@v3.1.0
10 changes: 5 additions & 5 deletions artifacthub-pkg.yml
Expand Up @@ -4,27 +4,27 @@
#
# This config can be saved to its default location with:
# kwctl scaffold artifacthub > artifacthub-pkg.yml
version: 0.1.6
version: 0.1.7
name: disallow-service-loadbalancer
displayName: Disallow Service Loadbalancer
createdAt: 2023-03-21T17:39:53.120767513Z
createdAt: 2023-03-24T16:38:25.289710085Z
description: A policy that prevents the creation of Service resources of type `LoadBalancer`
license: Apache-2.0
homeURL: https://github.com/kubewarden/disallow-service-loadbalancer-policy
containersImages:
- name: policy
image: ghcr.io/kubewarden/policies/disallow-service-loadbalancer:v0.1.6
image: ghcr.io/kubewarden/policies/disallow-service-loadbalancer:v0.1.7
keywords:
- service
links:
- name: policy
url: https://github.com/kubewarden/disallow-service-loadbalancer-policy/releases/download/v0.1.6/policy.wasm
url: https://github.com/kubewarden/disallow-service-loadbalancer-policy/releases/download/v0.1.7/policy.wasm
- name: source
url: https://github.com/kubewarden/disallow-service-loadbalancer-policy
install: |
The policy can be obtained using [`kwctl`](https://github.com/kubewarden/kwctl):
```console
kwctl pull ghcr.io/kubewarden/policies/disallow-service-loadbalancer:v0.1.6
kwctl pull ghcr.io/kubewarden/policies/disallow-service-loadbalancer:v0.1.7
```
maintainers:
- name: Kubewarden developers
Expand Down
2 changes: 1 addition & 1 deletion metadata.yml
Expand Up @@ -11,8 +11,8 @@ annotations:
io.artifacthub.displayName: Disallow Service Loadbalancer
io.artifacthub.resources: Service
io.artifacthub.keywords: service
# kubewarden specific:
io.kubewarden.policy.ociUrl: ghcr.io/kubewarden/policies/disallow-service-loadbalancer
# kubewarden specific:
io.kubewarden.policy.author: Kubewarden developers <cncf-kubewarden-maintainers@lists.cncf.io>
io.kubewarden.policy.title: disallow-service-loadbalancer
io.kubewarden.policy.description: A policy that prevents the creation of Service resources of type `LoadBalancer`
Expand Down