How can I check what ingress controller I have on my kube and what is the default
I have kubeadm and Kubernetes v1.12 without AWS or Google Cloud.
I want to know if the Kubernetes cluster installed already has an ingress controller and if it has two what is the default.
Thanks :)
kubernetes kubernetes-ingress
add a comment |
I have kubeadm and Kubernetes v1.12 without AWS or Google Cloud.
I want to know if the Kubernetes cluster installed already has an ingress controller and if it has two what is the default.
Thanks :)
kubernetes kubernetes-ingress
add a comment |
I have kubeadm and Kubernetes v1.12 without AWS or Google Cloud.
I want to know if the Kubernetes cluster installed already has an ingress controller and if it has two what is the default.
Thanks :)
kubernetes kubernetes-ingress
I have kubeadm and Kubernetes v1.12 without AWS or Google Cloud.
I want to know if the Kubernetes cluster installed already has an ingress controller and if it has two what is the default.
Thanks :)
kubernetes kubernetes-ingress
kubernetes kubernetes-ingress
edited Nov 14 '18 at 18:07
Rico
27.6k94966
27.6k94966
asked Nov 14 '18 at 11:32
cdemetcdemet
5617
5617
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You can check for pods implementing ingress controllers (actually with ingress in the name) with:
kubectl get pods --all-namespaces | grep ingress
And services exposing them with:
kubectl get service --all-namespaces | grep ingress
As @Prafull Ladha says, you won't have an ingress controller by default. The documentation states that in "environments other than GCE/Google Kubernetes Engine, you need to deploy a controller as a pod".
1
thanks a lot :)
– cdemet
Nov 14 '18 at 12:35
add a comment |
There will not be any ingress or ingress-controller defined on the kubernetes cluster defined by kubeadm.
You can define your own ingress resource, read more about it here
For ingress resource to work you must have ingress-controller running. This controller is unlike other controller, which runs as a part of kube-controller-manager and automatically created as a part of cluster creation.
You need to choose the ingress controller implementation that suits your cluster. Kubernetes currently supports and manages Nginx and google ingress controller. You can also choose other ingress controller like Traefik or kong.
Hope this helps
thanks, istio is a good ingress controller ?
– cdemet
Nov 14 '18 at 12:34
1
Yes, Istio is a good service mash and it can provide you much more than what a normal ingress has to offer. It can handle all your issue related to services like traffic management, service discovery, load-balancing, metrics and monitoring.
– Prafull Ladha
Nov 14 '18 at 12:40
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53299238%2fhow-can-i-check-what-ingress-controller-i-have-on-my-kube-and-what-is-the-defaul%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can check for pods implementing ingress controllers (actually with ingress in the name) with:
kubectl get pods --all-namespaces | grep ingress
And services exposing them with:
kubectl get service --all-namespaces | grep ingress
As @Prafull Ladha says, you won't have an ingress controller by default. The documentation states that in "environments other than GCE/Google Kubernetes Engine, you need to deploy a controller as a pod".
1
thanks a lot :)
– cdemet
Nov 14 '18 at 12:35
add a comment |
You can check for pods implementing ingress controllers (actually with ingress in the name) with:
kubectl get pods --all-namespaces | grep ingress
And services exposing them with:
kubectl get service --all-namespaces | grep ingress
As @Prafull Ladha says, you won't have an ingress controller by default. The documentation states that in "environments other than GCE/Google Kubernetes Engine, you need to deploy a controller as a pod".
1
thanks a lot :)
– cdemet
Nov 14 '18 at 12:35
add a comment |
You can check for pods implementing ingress controllers (actually with ingress in the name) with:
kubectl get pods --all-namespaces | grep ingress
And services exposing them with:
kubectl get service --all-namespaces | grep ingress
As @Prafull Ladha says, you won't have an ingress controller by default. The documentation states that in "environments other than GCE/Google Kubernetes Engine, you need to deploy a controller as a pod".
You can check for pods implementing ingress controllers (actually with ingress in the name) with:
kubectl get pods --all-namespaces | grep ingress
And services exposing them with:
kubectl get service --all-namespaces | grep ingress
As @Prafull Ladha says, you won't have an ingress controller by default. The documentation states that in "environments other than GCE/Google Kubernetes Engine, you need to deploy a controller as a pod".
answered Nov 14 '18 at 12:13
Ryan DawsonRyan Dawson
4,5473425
4,5473425
1
thanks a lot :)
– cdemet
Nov 14 '18 at 12:35
add a comment |
1
thanks a lot :)
– cdemet
Nov 14 '18 at 12:35
1
1
thanks a lot :)
– cdemet
Nov 14 '18 at 12:35
thanks a lot :)
– cdemet
Nov 14 '18 at 12:35
add a comment |
There will not be any ingress or ingress-controller defined on the kubernetes cluster defined by kubeadm.
You can define your own ingress resource, read more about it here
For ingress resource to work you must have ingress-controller running. This controller is unlike other controller, which runs as a part of kube-controller-manager and automatically created as a part of cluster creation.
You need to choose the ingress controller implementation that suits your cluster. Kubernetes currently supports and manages Nginx and google ingress controller. You can also choose other ingress controller like Traefik or kong.
Hope this helps
thanks, istio is a good ingress controller ?
– cdemet
Nov 14 '18 at 12:34
1
Yes, Istio is a good service mash and it can provide you much more than what a normal ingress has to offer. It can handle all your issue related to services like traffic management, service discovery, load-balancing, metrics and monitoring.
– Prafull Ladha
Nov 14 '18 at 12:40
add a comment |
There will not be any ingress or ingress-controller defined on the kubernetes cluster defined by kubeadm.
You can define your own ingress resource, read more about it here
For ingress resource to work you must have ingress-controller running. This controller is unlike other controller, which runs as a part of kube-controller-manager and automatically created as a part of cluster creation.
You need to choose the ingress controller implementation that suits your cluster. Kubernetes currently supports and manages Nginx and google ingress controller. You can also choose other ingress controller like Traefik or kong.
Hope this helps
thanks, istio is a good ingress controller ?
– cdemet
Nov 14 '18 at 12:34
1
Yes, Istio is a good service mash and it can provide you much more than what a normal ingress has to offer. It can handle all your issue related to services like traffic management, service discovery, load-balancing, metrics and monitoring.
– Prafull Ladha
Nov 14 '18 at 12:40
add a comment |
There will not be any ingress or ingress-controller defined on the kubernetes cluster defined by kubeadm.
You can define your own ingress resource, read more about it here
For ingress resource to work you must have ingress-controller running. This controller is unlike other controller, which runs as a part of kube-controller-manager and automatically created as a part of cluster creation.
You need to choose the ingress controller implementation that suits your cluster. Kubernetes currently supports and manages Nginx and google ingress controller. You can also choose other ingress controller like Traefik or kong.
Hope this helps
There will not be any ingress or ingress-controller defined on the kubernetes cluster defined by kubeadm.
You can define your own ingress resource, read more about it here
For ingress resource to work you must have ingress-controller running. This controller is unlike other controller, which runs as a part of kube-controller-manager and automatically created as a part of cluster creation.
You need to choose the ingress controller implementation that suits your cluster. Kubernetes currently supports and manages Nginx and google ingress controller. You can also choose other ingress controller like Traefik or kong.
Hope this helps
answered Nov 14 '18 at 12:00
Prafull LadhaPrafull Ladha
3,140320
3,140320
thanks, istio is a good ingress controller ?
– cdemet
Nov 14 '18 at 12:34
1
Yes, Istio is a good service mash and it can provide you much more than what a normal ingress has to offer. It can handle all your issue related to services like traffic management, service discovery, load-balancing, metrics and monitoring.
– Prafull Ladha
Nov 14 '18 at 12:40
add a comment |
thanks, istio is a good ingress controller ?
– cdemet
Nov 14 '18 at 12:34
1
Yes, Istio is a good service mash and it can provide you much more than what a normal ingress has to offer. It can handle all your issue related to services like traffic management, service discovery, load-balancing, metrics and monitoring.
– Prafull Ladha
Nov 14 '18 at 12:40
thanks, istio is a good ingress controller ?
– cdemet
Nov 14 '18 at 12:34
thanks, istio is a good ingress controller ?
– cdemet
Nov 14 '18 at 12:34
1
1
Yes, Istio is a good service mash and it can provide you much more than what a normal ingress has to offer. It can handle all your issue related to services like traffic management, service discovery, load-balancing, metrics and monitoring.
– Prafull Ladha
Nov 14 '18 at 12:40
Yes, Istio is a good service mash and it can provide you much more than what a normal ingress has to offer. It can handle all your issue related to services like traffic management, service discovery, load-balancing, metrics and monitoring.
– Prafull Ladha
Nov 14 '18 at 12:40
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53299238%2fhow-can-i-check-what-ingress-controller-i-have-on-my-kube-and-what-is-the-defaul%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown