3 changed files with 167 additions and 0 deletions
@ -0,0 +1,78 @@ |
|||||
|
apiVersion: project.openshift.io/v1 |
||||
|
kind: Project |
||||
|
metadata: |
||||
|
annotations: |
||||
|
argocd.argoproj.io/sync-wave: "0" |
||||
|
openshift.io/description: "" |
||||
|
openshift.io/display-name: "" |
||||
|
labels: |
||||
|
kubernetes.io/metadata.name: openshift-devspaces |
||||
|
name: openshift-devspaces |
||||
|
spec: |
||||
|
finalizers: |
||||
|
- kubernetes |
||||
|
--- |
||||
|
apiVersion: operators.coreos.com/v1alpha1 |
||||
|
kind: Subscription |
||||
|
metadata: |
||||
|
annotations: |
||||
|
argocd.argoproj.io/sync-wave: "10" |
||||
|
labels: |
||||
|
operators.coreos.com/devspaces.openshift-operators: "" |
||||
|
name: devspaces |
||||
|
namespace: openshift-operators |
||||
|
spec: |
||||
|
channel: stable |
||||
|
installPlanApproval: Automatic |
||||
|
name: devspaces |
||||
|
source: redhat-operators |
||||
|
sourceNamespace: openshift-marketplace |
||||
|
startingCSV: devspacesoperator.v3.6.0-0.1685320856.p |
||||
|
--- |
||||
|
apiVersion: org.eclipse.che/v2 |
||||
|
kind: CheCluster |
||||
|
metadata: |
||||
|
annotations: |
||||
|
argocd.argoproj.io/sync-wave: "15" |
||||
|
argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true |
||||
|
name: devspaces |
||||
|
namespace: openshift-devspaces |
||||
|
spec: |
||||
|
components: |
||||
|
cheServer: |
||||
|
debug: false |
||||
|
logLevel: INFO |
||||
|
metrics: |
||||
|
enable: true |
||||
|
containerRegistry: {} |
||||
|
devEnvironments: |
||||
|
startTimeoutSeconds: 300 |
||||
|
secondsOfRunBeforeIdling: -1 |
||||
|
maxNumberOfWorkspacesPerUser: -1 |
||||
|
containerBuildConfiguration: |
||||
|
openShiftSecurityContextConstraint: container-build |
||||
|
defaultNamespace: |
||||
|
autoProvision: true |
||||
|
template: <username>-devspaces |
||||
|
secondsOfInactivityBeforeIdling: 1800 |
||||
|
storage: |
||||
|
pvcStrategy: per-user |
||||
|
gitServices: {} |
||||
|
networking: {} |
||||
|
--- |
||||
|
kind: Secret |
||||
|
apiVersion: v1 |
||||
|
metadata: |
||||
|
name: github-oauth-config |
||||
|
namespace: openshift-devspaces |
||||
|
labels: |
||||
|
app.kubernetes.io/part-of: che.eclipse.org |
||||
|
app.kubernetes.io/component: oauth-scm-configuration |
||||
|
annotations: |
||||
|
argocd.argoproj.io/sync-wave: "20" |
||||
|
che.eclipse.org/oauth-scm-server: github |
||||
|
che.eclipse.org/scm-server-endpoint: https://github.com |
||||
|
type: Opaque |
||||
|
stringData: |
||||
|
id: {{ .Value.github-client-id }} |
||||
|
secret: {{ .Value.github-client-secret }} |
||||
Loading…
Reference in new issue