Skip to content

Commit

Permalink
feat: Use registry.devfile.io by default in Eclipse Che
Browse files Browse the repository at this point in the history
Signed-off-by: Anatolii Bazko <[email protected]>
  • Loading branch information
tolusha committed Feb 19, 2024
1 parent 1ae0142 commit f063092
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,16 @@ metadata:
"namespace": "eclipse-che"
},
"spec": {
"components": {},
"components": {
"pluginRegistry": {
"disableInternalRegistry": true,
"externalPluginRegistries": [
{
"url": "https://registry.devfile.io/"
}
]
}
},
"containerRegistry": {},
"devEnvironments": {},
"gitServices": {},
Expand All @@ -77,7 +86,7 @@ metadata:
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/eclipse-che/che-operator
support: Eclipse Foundation
name: eclipse-che.v7.82.0-835.next
name: eclipse-che.v7.82.0-837.next
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -1248,7 +1257,7 @@ spec:
minKubeVersion: 1.19.0
provider:
name: Eclipse Foundation
version: 7.82.0-835.next
version: 7.82.0-837.next
webhookdefinitions:
- admissionReviewVersions:
- v1
Expand Down
4 changes: 3 additions & 1 deletion config/samples/org_v1_checluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ metadata:
namespace: eclipse-che
spec:
server:
workspaceNamespaceDefault: "<username>-che"
workspaceNamespaceDefault: '<username>-che'
externalPluginRegistry: true
pluginRegistryUrl: 'https://registry.devfile.io'
database:
externalDb: false
storage:
Expand Down
6 changes: 5 additions & 1 deletion config/samples/org_v2_checluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ metadata:
name: eclipse-che
namespace: eclipse-che
spec:
components: {}
components:
pluginRegistry:
disableInternalRegistry: true
externalPluginRegistries:
- url: 'https://registry.devfile.io'
devEnvironments: {}
networking: {}
containerRegistry: {}
Expand Down
6 changes: 5 additions & 1 deletion deploy/deployment/kubernetes/org_v2_checluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ metadata:
name: eclipse-che
namespace: eclipse-che
spec:
components: {}
components:
pluginRegistry:
disableInternalRegistry: true
externalPluginRegistries:
- url: https://registry.devfile.io/
devEnvironments: {}
networking: {}
containerRegistry: {}
Expand Down
6 changes: 5 additions & 1 deletion deploy/deployment/openshift/org_v2_checluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ metadata:
name: eclipse-che
namespace: eclipse-che
spec:
components: {}
components:
pluginRegistry:
disableInternalRegistry: true
externalPluginRegistries:
- url: https://registry.devfile.io/
devEnvironments: {}
networking: {}
containerRegistry: {}
Expand Down
6 changes: 5 additions & 1 deletion helmcharts/next/templates/org_v2_checluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ metadata:
name: eclipse-che
namespace: eclipse-che
spec:
components: {}
components:
pluginRegistry:
disableInternalRegistry: true
externalPluginRegistries:
- url: https://registry.devfile.io/
devEnvironments: {}
networking:
tlsSecretName: che-tls
Expand Down

0 comments on commit f063092

Please sign in to comment.