You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2022/05/17 07:35:42 UTC

[GitHub] [camel-k] Delawen opened a new pull request, #3281: [Docs]Adding the option of using docker registry

Delawen opened a new pull request, #3281:
URL: https://github.com/apache/camel-k/pull/3281

   As described in https://camel.apache.org/camel-k/1.9.x/installation/platform/kind.html


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-k] oscerd commented on pull request #3281: [Docs]Adding the option of using docker registry

Posted by GitBox <gi...@apache.org>.
oscerd commented on PR #3281:
URL: https://github.com/apache/camel-k/pull/3281#issuecomment-1129710517

   Sure.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-k] oscerd merged pull request #3281: [Docs]Adding the option of using docker registry

Posted by GitBox <gi...@apache.org>.
oscerd merged PR #3281:
URL: https://github.com/apache/camel-k/pull/3281


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-k] squakez commented on pull request #3281: [Docs]Adding the option of using docker registry

Posted by GitBox <gi...@apache.org>.
squakez commented on PR #3281:
URL: https://github.com/apache/camel-k/pull/3281#issuecomment-1128959253

   > Looks nice but I feel it's somewhat a duplicate of this doc: https://camel.apache.org/camel-k/1.9.x/installation/registry/dockerhub.html
   > 
   > Possibly we can just suggest a link to the installation guide here instead?
   
   +1 that


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-k] oscerd commented on a diff in pull request #3281: [Docs]Adding the option of using docker registry

Posted by GitBox <gi...@apache.org>.
oscerd commented on code in PR #3281:
URL: https://github.com/apache/camel-k/pull/3281#discussion_r874470209


##########
docs/modules/ROOT/pages/contributing/local-development.adoc:
##########
@@ -65,4 +65,20 @@ Camel K integrations are based on https://github.com/apache/camel-k-runtime[Came
 ./kamel install --skip-operator-setup -n operator-test --registry localhost:5000 --force --runtime-version 1.7.0-SNAPSHOT
 ----
 
-With the above instructions, the operator will pick up and use the snapshot version you have released locally.
\ No newline at end of file
+With the above instructions, the operator will pick up and use the snapshot version you have released locally.
+
+==== Using a Docker registry
+
+Alternatively, if no local registry is available, you can use a docker registry. First, create a secret with your registry username and password:
+
+```
+kubectl -n default create secret docker-registry external-registry-secret --docker-username my-user --docker-password "password"
+```
+
+And then you can run the installation of Camel K operator:
+
+```
+./kamel install --skip-operator-setup -n operator-test --force --runtime-version 1.7.0-SNAPSHOT --registry docker.io --organization my-org-or-username --registry-secret external-registry-secret 

Review Comment:
   I don't think we should use 1.7.0-SNAPSHOT as runtime version as default in the docs.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-k] oscerd commented on pull request #3281: [Docs]Adding the option of using docker registry

Posted by GitBox <gi...@apache.org>.
oscerd commented on PR #3281:
URL: https://github.com/apache/camel-k/pull/3281#issuecomment-1129713923

   Done.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-k] tadayosi commented on pull request #3281: [Docs]Adding the option of using docker registry

Posted by GitBox <gi...@apache.org>.
tadayosi commented on PR #3281:
URL: https://github.com/apache/camel-k/pull/3281#issuecomment-1129709698

   @Delawen @oscerd Can we port this to main as well?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-k] Delawen commented on pull request #3281: [Docs]Adding the option of using docker registry

Posted by GitBox <gi...@apache.org>.
Delawen commented on PR #3281:
URL: https://github.com/apache/camel-k/pull/3281#issuecomment-1129656053

   Changed by a link to the registry section.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-k] Delawen commented on a diff in pull request #3281: [Docs]Adding the option of using docker registry

Posted by GitBox <gi...@apache.org>.
Delawen commented on code in PR #3281:
URL: https://github.com/apache/camel-k/pull/3281#discussion_r874473048


##########
docs/modules/ROOT/pages/contributing/local-development.adoc:
##########
@@ -65,4 +65,20 @@ Camel K integrations are based on https://github.com/apache/camel-k-runtime[Came
 ./kamel install --skip-operator-setup -n operator-test --registry localhost:5000 --force --runtime-version 1.7.0-SNAPSHOT
 ----
 
-With the above instructions, the operator will pick up and use the snapshot version you have released locally.
\ No newline at end of file
+With the above instructions, the operator will pick up and use the snapshot version you have released locally.
+
+==== Using a Docker registry
+
+Alternatively, if no local registry is available, you can use a docker registry. First, create a secret with your registry username and password:
+
+```
+kubectl -n default create secret docker-registry external-registry-secret --docker-username my-user --docker-password "password"
+```
+
+And then you can run the installation of Camel K operator:
+
+```
+./kamel install --skip-operator-setup -n operator-test --force --runtime-version 1.7.0-SNAPSHOT --registry docker.io --organization my-org-or-username --registry-secret external-registry-secret 

Review Comment:
   I am using the same version number that is in the same documentation page. Let me replace it with a variable.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org