Can't use custom registries
See original GitHub issueDescribe the bug
I have a problem trying to use custom devfile and custom plugin registry. I can build and deploy them without any errors or problems, but the changes I made don’t show up. Neither the custom Stack from the devfile registry nor the added plugin of the plugin registry. To build the registries I use the build.sh, which is contained in the registries repos. To deploy I use:
NAMESPACE="kube-che"
DOMAIN="$(minikube ip).nip.io"
helm upgrade --install che-plugin-registry \
--debug \
--namespace ${NAMESPACE} \
--set global.ingressDomain=${DOMAIN} \
./kubernetes/che-plugin-registry/
for the plugin registry and:
NAMESPACE="kube-che"
DOMAIN="$(minikube ip).nip.io"
helm upgrade --install che-devfile-registry \
--debug \
--namespace ${NAMESPACE} \
--set global.ingressDomain=${DOMAIN} \
./deploy/kubernetes/che-devfile-registry/
for the devfile registry.
Che version
- latest
- nightly
- other: 7.4.0
Steps to reproduce
Expected behavior
Runtime
- kubernetes (include output of
kubectl version
)
Client Version: version.Info{Major:"1", Minor:"15", GitVersion:"v1.15.4", GitCommit:"67d2fcf276fcd9cf743ad4be9a9ef5828adc082f", GitTreeState:"clean", BuildDate:"2019-09-18T14:51:13Z", GoVersion:"go1.12.9", Compiler:"gc", Platform:"windows/amd64"}
Server Version: version.Info{Major:"1", Minor:"15", GitVersion:"v1.15.4", GitCommit:"67d2fcf276fcd9cf743ad4be9a9ef5828adc082f", GitTreeState:"clean", BuildDate:"2019-09-18T14:41:55Z", GoVersion:"go1.12.9", Compiler:"gc", Platform:"linux/amd64"}
- Openshift (include output of
oc version
) - minikube (include output of
minikube version
andkubectl version
) - minishift (include output of
minishift version
andoc version
) - docker-desktop + K8S (include output of
docker version
andkubectl version
) - other: (please specify)
Screenshots
Installation method
- chectl command: chectl server:start -p minikube
- che-operator
- minishift-addon
- I don’t know
Environment
- my computer
- Windows
- Linux
- macOS
- Cloud
- Amazon
- Azure
- GCE
- other (please specify)
- other: please specify
Additional context
Issue Analytics
- State:
- Created 4 years ago
- Comments:15 (8 by maintainers)
Top Results From Across the Web
Can't use custom registry with SYSTEM user in windows #17965
I'm having difficulty setting up a project using vcpkg with a custom registry and a custom port under Jenkins. Cmake configure for this ......
Read more >Yarn won't use specified registry - Stack Overflow
Save this question. Show activity on this post. After running yarn config set registry https://registry.yarnpkg.com/ , Yarn continuously uses ...
Read more >How to manage Linux container registries | Enable Sysadmin
There are many options to manage Linux container registries using the registries.conf file.
Read more >How to use your own private local registry with Docker
Today we are introducing an easy way to share repositories on your own registry so that you can control access to them and...
Read more >Amazon ECR private registry
You can use your private registry to manage private image repositories consisting of Docker and Open Container Initiative (OCI) images and artifacts. Each...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I have solved it. I had to specify a custom tag while executing build.sh and specify that custom tag while deploying. Unfortunately I have another problem now, when trying to start a workspace, but since it is not a problem about building/deploying I’ll open a new isuue for that.
When I opened this issue it was, in my oppinion, more a bug than a question, but at the moment i think it is indeed more a question than a bug.