-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for devfile kubernetes
and openshift
components
#17894
Comments
Is there any plan for implementing this feature? In out project we want to create k8s Secret component with automount credentials annotation to add git credentials from the private Git repositories other than the devfile location. Example: components:
- name: git-credentials-gitlab
kubernetes:
inlined: |
{
"kind": "Secret",
"apiVersion": "v1",
"metadata": {
"name": "git-credentials-gitlab",
"annotations": {
"controller.devfile.io/mount-path": "/home/theia/.git-credentials"
},
"labels": {
"controller.devfile.io/git-credential": "true",
"controller.devfile.io/watch-secret": "true"
}
},
"type": "Opaque",
"data": {
"credentials": "aHR0cDovL...b2NhbA=="
}
} |
Issues go stale after Mark the issue as fresh with If this issue is safe to close now please do so. Moderators: Add |
This has been addressed by devfile/devworkspace-operator#961 |
kubernetes
and openshift
components
sync'd to Red Hat JIRA https://issues.redhat.com/browse/CRW-3851 |
Is your enhancement related to a problem? Please describe.
Che currently ignores kubernetes and openshift components. These were previously supported by the che-server workspaces engine.
Describe the solution you'd like
kubernetes
oropenshift
component, would be applied without any modification.kubernetes
andopenshift
components (there is a specific issue for that)Release Notes Text
Eclipse Che now supports devfile components of type
kubernetes
andopenshift
. That allow to reference Kubernetes and OpenShift manifests in a devfile and include them as part of the workspace. Devfile components of typevolume
andcontainer
were already supported, components of typeimage
are not supported yet.The text was updated successfully, but these errors were encountered: