Skip to content

Commit 4a8cea9

Browse files
Murugesan-30795Murugesan
andauthored
operator digitalai-deploy-operator (v24.3.10) (redhat-openshift-ecosystem#6448)
* operator digitalai-deploy-operator (v25.3.0-beta.609) * operator digitalai-release-operator (v25.1.3) * operator digitalai-deploy-operator (v25.1.3) * operator digitalai-release-operator (v24.3.9) * operator digitalai-deploy-operator (v24.3.9) * operator digitalai-release-operator (v24.1.20) * operator digitalai-deploy-operator (v24.1.20) * operator digitalai-deploy-operator (v25.3.0-beta.711) * operator digitalai-release-operator (v25.3.0-beta.711) * operator digitalai-release-operator (v25.1.4) * operator digitalai-deploy-operator (v25.1.4) * operator digitalai-release-operator (v24.3.10) * operator digitalai-deploy-operator (v24.3.10) --------- Co-authored-by: Murugesan <[email protected]>
1 parent 94d6e63 commit 4a8cea9

10 files changed

+2249
-0
lines changed

operators/digitalai-deploy-operator/v24.3.10/manifests/digitalai-deploy-operator.clusterserviceversion.yaml

Lines changed: 1990 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
apiVersion: v1
2+
kind: Service
3+
metadata:
4+
creationTimestamp: null
5+
labels:
6+
app.kubernetes.io/managed-by: kustomize
7+
app.kubernetes.io/name: xld
8+
control-plane: controller-manager
9+
name: xld-controller-manager-metrics-service
10+
spec:
11+
ports:
12+
- name: https
13+
port: 8443
14+
protocol: TCP
15+
targetPort: 8443
16+
selector:
17+
app.kubernetes.io/name: xld
18+
control-plane: controller-manager
19+
status:
20+
loadBalancer: {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: ClusterRole
3+
metadata:
4+
creationTimestamp: null
5+
labels:
6+
app.kubernetes.io/managed-by: kustomize
7+
app.kubernetes.io/name: xld
8+
name: xld-digitalaideploy-admin-role
9+
rules:
10+
- apiGroups:
11+
- xld.digital.ai
12+
resources:
13+
- digitalaideploys
14+
verbs:
15+
- '*'
16+
- apiGroups:
17+
- xld.digital.ai
18+
resources:
19+
- digitalaideploys/status
20+
verbs:
21+
- get
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: ClusterRole
3+
metadata:
4+
creationTimestamp: null
5+
labels:
6+
app.kubernetes.io/managed-by: kustomize
7+
app.kubernetes.io/name: xld
8+
name: xld-digitalaideploy-editor-role
9+
rules:
10+
- apiGroups:
11+
- xld.digital.ai
12+
resources:
13+
- digitalaideploys
14+
verbs:
15+
- create
16+
- delete
17+
- get
18+
- list
19+
- patch
20+
- update
21+
- watch
22+
- apiGroups:
23+
- xld.digital.ai
24+
resources:
25+
- digitalaideploys/status
26+
verbs:
27+
- get
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: ClusterRole
3+
metadata:
4+
creationTimestamp: null
5+
labels:
6+
app.kubernetes.io/managed-by: kustomize
7+
app.kubernetes.io/name: xld
8+
name: xld-digitalaideploy-viewer-role
9+
rules:
10+
- apiGroups:
11+
- xld.digital.ai
12+
resources:
13+
- digitalaideploys
14+
verbs:
15+
- get
16+
- list
17+
- watch
18+
- apiGroups:
19+
- xld.digital.ai
20+
resources:
21+
- digitalaideploys/status
22+
verbs:
23+
- get
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: ClusterRole
3+
metadata:
4+
creationTimestamp: null
5+
name: xld-metrics-reader
6+
rules:
7+
- nonResourceURLs:
8+
- /metrics
9+
verbs:
10+
- get
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
creationTimestamp: null
5+
name: digitalaideploys.xld.digital.ai
6+
spec:
7+
group: xld.digital.ai
8+
names:
9+
kind: DigitalaiDeploy
10+
listKind: DigitalaiDeployList
11+
plural: digitalaideploys
12+
singular: digitalaideploy
13+
scope: Namespaced
14+
versions:
15+
- name: v1alpha1
16+
schema:
17+
openAPIV3Schema:
18+
description: DigitalaiDeploy is the Schema for the digitalaideploys 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 DigitalaiDeploy
34+
type: object
35+
x-kubernetes-preserve-unknown-fields: true
36+
status:
37+
description: Status defines the observed state of DigitalaiDeploy
38+
type: object
39+
x-kubernetes-preserve-unknown-fields: true
40+
type: object
41+
served: true
42+
storage: true
43+
subresources:
44+
status: {}
45+
status:
46+
acceptedNames:
47+
kind: ""
48+
plural: ""
49+
conditions: null
50+
storedVersions: null
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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: digitalai-deploy-operator
7+
operators.operatorframework.io.bundle.channels.v1: stable-v24.3
8+
operators.operatorframework.io.bundle.channel.default.v1: stable-v24.3
9+
operators.operatorframework.io.metrics.builder: operator-sdk-v1.41.1
10+
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
11+
operators.operatorframework.io.metrics.project_layout: helm.sdk.operatorframework.io/v1
12+
# Annotations for testing.
13+
operators.operatorframework.io.test.mediatype.v1: scorecard+v1
14+
operators.operatorframework.io.test.config.v1: tests/scorecard/
15+
# Custom
16+
com.redhat.openshift.versions: v4.11-v4.18
17+
com.redhat.delivery.operator.bundle: true
18+
com.redhat.deliver.backport: false
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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: digitalai-deploy-operator
7+
operators.operatorframework.io.bundle.channels.v1: stable-v24.3
8+
operators.operatorframework.io.bundle.channel.default.v1: stable-v24.3
9+
operators.operatorframework.io.metrics.builder: operator-sdk-v1.41.1
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+
# Custom
18+
com.redhat.openshift.versions: v4.11-v4.18
19+
com.redhat.delivery.operator.bundle: true
20+
com.redhat.deliver.backport: false
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
apiVersion: scorecard.operatorframework.io/v1alpha3
2+
kind: Configuration
3+
metadata:
4+
name: config
5+
stages:
6+
- parallel: true
7+
tests:
8+
- entrypoint:
9+
- scorecard-test
10+
- basic-check-spec
11+
image: quay.io/operator-framework/scorecard-test:v1.41.1
12+
labels:
13+
suite: basic
14+
test: basic-check-spec-test
15+
storage:
16+
spec:
17+
mountPath: {}
18+
- entrypoint:
19+
- scorecard-test
20+
- olm-bundle-validation
21+
image: quay.io/operator-framework/scorecard-test:v1.41.1
22+
labels:
23+
suite: olm
24+
test: olm-bundle-validation-test
25+
storage:
26+
spec:
27+
mountPath: {}
28+
- entrypoint:
29+
- scorecard-test
30+
- olm-crds-have-validation
31+
image: quay.io/operator-framework/scorecard-test:v1.41.1
32+
labels:
33+
suite: olm
34+
test: olm-crds-have-validation-test
35+
storage:
36+
spec:
37+
mountPath: {}
38+
- entrypoint:
39+
- scorecard-test
40+
- olm-crds-have-resources
41+
image: quay.io/operator-framework/scorecard-test:v1.41.1
42+
labels:
43+
suite: olm
44+
test: olm-crds-have-resources-test
45+
storage:
46+
spec:
47+
mountPath: {}
48+
- entrypoint:
49+
- scorecard-test
50+
- olm-spec-descriptors
51+
image: quay.io/operator-framework/scorecard-test:v1.41.1
52+
labels:
53+
suite: olm
54+
test: olm-spec-descriptors-test
55+
storage:
56+
spec:
57+
mountPath: {}
58+
- entrypoint:
59+
- scorecard-test
60+
- olm-status-descriptors
61+
image: quay.io/operator-framework/scorecard-test:v1.41.1
62+
labels:
63+
suite: olm
64+
test: olm-status-descriptors-test
65+
storage:
66+
spec:
67+
mountPath: {}
68+
storage:
69+
spec:
70+
mountPath: {}

0 commit comments

Comments
 (0)