gansheer commented on code in PR #4839:
URL: https://github.com/apache/camel-k/pull/4839#discussion_r1368329104


##########
install/overlays/kubernetes/README.md:
##########
@@ -0,0 +1,50 @@
+# Kubernetes overlay
+
+## Pre-requise
+
+This is an overlay intended for Minkube with the following configuration:
+* Cluster-admin privileges are required
+* Namespace is `default`
+* Operator id is `camel-k`
+* An available registry
+
+## Usage
+
+The following env variable are expected
+
+
+To run from local folder :
+```sh
+kubectl kustomize kustomize/overlays/kubernetes | kubectl create -f -
+```
+
+To run from remote github repository:
+```sh
+kubectl kustomize 
https://github.com/apache/camel-k/kustomize/overlays/kubernetes | kubectl 
create -f -
+```
+
+NOTE: to use a different branch add the parameter "ref" to the github 
repository URL.
+
+
+### Minikube
+
+You can easilly configure minikube with the registry addon.
+
+First get the internal registry service IP from minikube :
+
+```sh
+export KAMEL_REGISTRY_ADDRESS="$(kubectl get service --selector 
"kubernetes.io/minikube-addons"="registry" --namespace kube-system 
-o=jsonpath='{.items[0].spec.clusterIP}')"

Review Comment:
   Thanks, I will check this. This explains the "placeholder" namespace value I 
saw in the files.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to