Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,5 @@ echo "https://$(oc get route default-route -n openshift-image-registry --templat

Once the backup job is finished, the backup archives will be available in the {devworkspace} {namespace} under a repository
with a matching {devworkspace} name.

include::partial$snip_defining-dwo-namespace-for-backups.adoc[]
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ config:
----
<1> For Red Hat OpenShift, the default installation namespace for the {devworkspace} operator is `openshift-operators`. See the xref:devworkspace-operator.adoc[{devworkspace} operator overview].

include::partial$snip_defining-dwo-namespace-for-backups.adoc[]
Comment thread
gtrivedi88 marked this conversation as resolved.
Outdated

The `authSecret` must be named `devworkspace-backup-registry-auth`. It must reference a {kubernetes} Secret of type `kubernetes.io/dockerconfigjson` that contains credentials to access the registry.
The secret should be created in the installation {namespace} for the {devworkspace} operator.

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
:_content-type: SNIPPET

**Note:** If the installation {namespace} for the {devworkspace} operator is not `openshift-operators`, you must define it as an environment variable for the {prod} dashboard in the `CheCluster` Custom Resource.
Comment thread
gtrivedi88 marked this conversation as resolved.
Outdated

[source,yaml,subs="+attributes,+quotes"]
----
apiVersion: org.eclipse.che/v2
kind: CheCluster
spec:
components:
dashboard:
deployment:
containers:
- env:
- name: DWO_NAMESPACE
value: $OPERATOR_INSTALL_NAMESPACE
Comment thread
gtrivedi88 marked this conversation as resolved.
Outdated
name: che-dashboard
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This value is the same for both upstream and downstream.

----
Comment thread
gtrivedi88 marked this conversation as resolved.
Loading