Skip to content

Commit

Permalink
feat(rh-shield-operator): prepare for v0.1.2 (#2025)
Browse files Browse the repository at this point in the history
  • Loading branch information
aroberts87 authored Nov 8, 2024
1 parent cbf9150 commit 79d8dd7
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 10 deletions.
2 changes: 1 addition & 1 deletion rh-shield-operator/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# To re-generate a bundle for another specific version without changing the standard setup, you can:
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
VERSION ?= 0.1.1
VERSION ?= 0.1.2

# CHANNELS define the bundle channels used in the bundle.
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -368,16 +368,16 @@ metadata:
}
}
]
capabilities: SeamlessUpgrades
capabilities: Basic Install
categories: Security, Monitoring
createdAt: "2024-11-07T18:47:53Z"
createdAt: "2024-11-08T14:23:41Z"
description: |
The Sysdig Shield Operator provides a way to deploy Sysdig Shield components on an OpenShift cluster.
operators.operatorframework.io/builder: operator-sdk-v1.36.1
operators.operatorframework.io/project_layout: helm.sdk.operatorframework.io/v1
repository: https://github.com/sysdiglabs/charts
support: https://sysdig.com
name: rh-shield-operator.v0.1.1
name: rh-shield-operator.v0.1.2
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -434,6 +434,12 @@ spec:
- patch
- update
- watch
- apiGroups:
- security.openshift.io
resources:
- securitycontextconstraints
verbs:
- '*'
- apiGroups:
- rbac.authorization.k8s.io
resources:
Expand Down Expand Up @@ -525,7 +531,7 @@ spec:
- --metrics-bind-address=127.0.0.1:8080
- --leader-elect
- --leader-election-id=rh-shield-operator
image: quay.io/sysdig/rh-shield-operator:v0.1.1
image: quay.io/sysdig/rh-shield-operator:v0.1.2
livenessProbe:
httpGet:
path: /healthz
Expand All @@ -542,7 +548,7 @@ spec:
resources:
limits:
cpu: 500m
memory: 128Mi
memory: 256Mi
requests:
cpu: 10m
memory: 64Mi
Expand Down Expand Up @@ -629,4 +635,4 @@ spec:
provider:
name: Sysdig
url: https://sysdig.com
version: 0.1.1
version: 0.1.2
2 changes: 1 addition & 1 deletion rh-shield-operator/config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ kind: Kustomization
images:
- name: controller
newName: quay.io/sysdig/rh-shield-operator
newTag: v0.1.1
newTag: v0.1.2
2 changes: 1 addition & 1 deletion rh-shield-operator/config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ spec:
resources:
limits:
cpu: 500m
memory: 128Mi
memory: 256Mi
requests:
cpu: 10m
memory: 64Mi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: ClusterServiceVersion
metadata:
annotations:
alm-examples: '[]'
capabilities: SeamlessUpgrades
capabilities: Basic Install
categories: Security, Monitoring
description: |
The Sysdig Shield Operator provides a way to deploy Sysdig Shield components on an OpenShift cluster.
Expand Down
6 changes: 6 additions & 0 deletions rh-shield-operator/config/rbac/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ rules:
- patch
- update
- watch
- verbs:
- "*"
apiGroups:
- "security.openshift.io"
resources:
- "securitycontextconstraints"
- verbs:
- "*"
apiGroups:
Expand Down

0 comments on commit 79d8dd7

Please sign in to comment.