Skip to content

Commit 6cc31f5

Browse files
scaleops-botScaleOps Releaser [bot]
andauthored
operator scaleops-operator (v1.26.10) (#7378)
* Update ScaleOps Operator to v1.26.10 * Pin the operator manifests --------- Co-authored-by: ScaleOps Releaser [bot] <[email protected]>
1 parent a8911bf commit 6cc31f5

File tree

5 files changed

+447
-0
lines changed

5 files changed

+447
-0
lines changed
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
creationTimestamp: null
5+
name: scaleops.analysis.scaleops.sh
6+
spec:
7+
group: analysis.scaleops.sh
8+
names:
9+
kind: ScaleOps
10+
listKind: ScaleOpsList
11+
plural: scaleops
12+
singular: scaleops
13+
scope: Namespaced
14+
versions:
15+
- name: v1
16+
schema:
17+
openAPIV3Schema:
18+
description: ScaleOps is the Schema for the scaleops API
19+
properties:
20+
apiVersion:
21+
description: 'APIVersion defines the versioned schema of this representation
22+
of an object. Servers should convert recognized schemas to the latest
23+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
24+
type: string
25+
kind:
26+
description: 'Kind is a string value representing the REST resource this
27+
object represents. Servers may infer this from the endpoint the client
28+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
29+
type: string
30+
metadata:
31+
type: object
32+
spec:
33+
description: Spec defines the desired state of ScaleOps
34+
properties:
35+
openshiftSSO:
36+
description: Configure OpenShift SSO
37+
properties:
38+
clientID:
39+
default: scaleops
40+
description: The name of the OauthClient
41+
minLength: 1
42+
type: string
43+
enabled:
44+
default: false
45+
description: Allow ScaleOps to access the OAuthClient associated
46+
with the specified clientID, or create a new OAuthClient and
47+
configure ScaleOps to use it.
48+
type: boolean
49+
loginRedirectURL:
50+
description: Used in the login flow, the URL to redirect to after
51+
successful login.
52+
example: https://scaleops.example.com/auth/callback
53+
type: string
54+
required:
55+
- enabled
56+
- clientID
57+
type: object
58+
x-kubernetes-preserve-unknown-fields: true
59+
type: object
60+
x-kubernetes-preserve-unknown-fields: true
61+
status:
62+
description: Status defines the observed state of ScaleOps
63+
type: object
64+
x-kubernetes-preserve-unknown-fields: true
65+
type: object
66+
served: true
67+
storage: true
68+
subresources:
69+
status: {}
70+
status:
71+
acceptedNames:
72+
kind: ""
73+
plural: ""
74+
conditions: null
75+
storedVersions: null
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: RoleBinding
3+
metadata:
4+
creationTimestamp: null
5+
name: scaleops-operator-manager-rolebinding
6+
roleRef:
7+
apiGroup: rbac.authorization.k8s.io
8+
kind: ClusterRole
9+
name: system:image-puller
10+
subjects:
11+
- kind: ServiceAccount
12+
name: scaleops-operator-controller-manager
13+
namespace: scaleops-system

operators/scaleops-operator/v1.26.10/manifests/scaleops-operator.clusterserviceversion.yaml

Lines changed: 335 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
annotations:
2+
# Core bundle annotations.
3+
operators.operatorframework.io.bundle.mediatype.v1: registry+v1
4+
operators.operatorframework.io.bundle.manifests.v1: manifests/
5+
operators.operatorframework.io.bundle.metadata.v1: metadata/
6+
operators.operatorframework.io.bundle.package.v1: scaleops-operator
7+
operators.operatorframework.io.bundle.channels.v1: stable
8+
operators.operatorframework.io.bundle.channel.default.v1: stable
9+
operators.operatorframework.io.metrics.builder: operator-sdk-v1.37.0
10+
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
11+
operators.operatorframework.io.metrics.project_layout: helm.sdk.operatorframework.io/v1
12+
13+
# Annotations for testing.
14+
operators.operatorframework.io.test.mediatype.v1: scorecard+v1
15+
operators.operatorframework.io.test.config.v1: tests/scorecard/
16+
17+
# Red Hat annotations.
18+
com.redhat.openshift.versions: v4.10-v4.20
19+
com.redhat.delivery.operator.bundle: true
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
catalog_templates:
3+
- template_name: template.yaml
4+
channels:
5+
- Stable

0 commit comments

Comments
 (0)