This repository has been archived by the owner on Jan 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Humair Khan <humair88@hotmail.com>
- Loading branch information
Showing
10 changed files
with
268 additions
and
37 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
varReference: | ||
- path: data | ||
kind: ConfigMap | ||
- path: spec/template/spec/containers[]/env/value | ||
- path: spec/template/spec/containers/env/value | ||
kind: Deployment | ||
- path: spec/template/spec/containers/image | ||
kind: Deployment |
204 changes: 174 additions & 30 deletions
204
...ses/datasciencepipelinesapplications.opendatahub.io_datasciencepipelinesapplications.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
49 changes: 49 additions & 0 deletions
49
data-science-pipelines-operator/crd/external/monitoring.coreos.com_servicemonitors.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: servicemonitors.monitoring.coreos.com | ||
spec: | ||
group: monitoring.coreos.com | ||
versions: | ||
- name: v1 | ||
served: true | ||
storage: true | ||
schema: | ||
openAPIV3Schema: | ||
type: object | ||
properties: | ||
spec: | ||
type: object | ||
required: | ||
- endpoints | ||
- selector | ||
properties: | ||
endpoints: | ||
type: array | ||
items: | ||
type: object | ||
required: | ||
- path | ||
- port | ||
properties: | ||
path: | ||
type: string | ||
port: | ||
type: string | ||
minItems: 1 | ||
selector: | ||
type: object | ||
properties: | ||
matchLabels: | ||
type: object | ||
status: | ||
type: object | ||
properties: | ||
observedGeneration: | ||
type: integer | ||
format: int64 | ||
scope: Namespaced | ||
names: | ||
plural: servicemonitors | ||
singular: servicemonitor | ||
kind: ServiceMonitor |
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
20 changes: 20 additions & 0 deletions
20
data-science-pipelines-operator/rbac/aggregate_dspa_role.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
labels: | ||
rbac.authorization.k8s.io/aggregate-to-admin: "true" | ||
rbac.authorization.k8s.io/aggregate-to-edit: "true" | ||
name: aggregate-dspa-admin-edit | ||
rules: | ||
- apiGroups: | ||
- datasciencepipelinesapplications.opendatahub.io | ||
resources: | ||
- datasciencepipelinesapplications | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- create | ||
- update | ||
- patch | ||
- delete |
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
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
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