Hi @Sujeet Saxena,
Since all requests come to the cluster through Ingress, it is important to make sure the Ingress is working correctly before proceeding to the next step. Therefore please make sure why the Pods are stuck in this state first.
Normally a Pod gets stuck in this state when the Init containers within the Pod have not completed successfully. Please run the following commands to see why.
- kubectl describe <PodName> -n ifs-ingress
- kubectl logs <PodName> -c <InitContainerName> -n ifs-ingress
For the second command, you can find the Init Container name from the output of the first command. It should be under the “Init Containers” section.
Hope this helps!
Thanks for the reply , i am getting below log message while running the command to check the logs..any help would be appreciated.
PS D:\IFSBuild_home\IFS22_2_7_Buildhome\build-home\ifsinstaller> kubectl logs linkerd-destination-764f947c85-gd8rn -c linkerd-init -n ifs-ingress
2023/12/12 10:19:34 Tracing this script execution as s1702376374]
2023/12/12 10:19:34 current state
------------------------------------------------------------
2023/12/12 10:19:34 :; iptables-save
2023/12/12 10:19:34
2023/12/12 10:19:34 configuration
------------------------------------------------------------
2023/12/12 10:19:34 Will ignore port r4190 4191 4567 4568] on chain PROXY_INIT_REDIRECT
2023/12/12 10:19:34 Will redirect all INPUT ports to proxy
2023/12/12 10:19:34 Ignoring uid 2102
2023/12/12 10:19:34 Will ignore port r443] on chain PROXY_INIT_OUTPUT
2023/12/12 10:19:34 Redirecting all OUTPUT to 4140
2023/12/12 10:19:34
2023/12/12 10:19:34 adding rules
------------------------------------------------------------
2023/12/12 10:19:34 :; iptables -t nat -N PROXY_INIT_REDIRECT -m comment --comment proxy-init/redirect-common-chain/1702376374
2023/12/12 10:19:34 :; iptables -t nat -A PROXY_INIT_REDIRECT -p tcp --match multiport --dports 4190,4191,4567,4568 -j RETURN -m comment --comment proxy-init/ignore-port-4190,4191,4567,4568/1702376374
2023/12/12 10:19:35 :; iptables -t nat -A PROXY_INIT_REDIRECT -p tcp -j REDIRECT --to-port 4143 -m comment --comment proxy-init/redirect-all-incoming-to-proxy-port/1702376374
2023/12/12 10:19:35 :; iptables -t nat -A PREROUTING -j PROXY_INIT_REDIRECT -m comment --comment proxy-init/install-proxy-init-prerouting/1702376374
2023/12/12 10:19:35 :; iptables -t nat -N PROXY_INIT_OUTPUT -m comment --comment proxy-init/redirect-common-chain/1702376374
2023/12/12 10:19:35 :; iptables -t nat -A PROXY_INIT_OUTPUT -m owner --uid-owner 2102 -j RETURN -m comment --comment proxy-init/ignore-proxy-user-id/1702376374
2023/12/12 10:19:35 :; iptables -t nat -A PROXY_INIT_OUTPUT -o lo -j RETURN -m comment --comment proxy-init/ignore-loopback/1702376374
2023/12/12 10:19:35 :; iptables -t nat -A PROXY_INIT_OUTPUT -p tcp --match multiport --dports 443 -j RETURN -m comment --comment proxy-init/ignore-port-443/1702376374
2023/12/12 10:19:35 :; iptables -t nat -A PROXY_INIT_OUTPUT -p tcp -j REDIRECT --to-port 4140 -m comment --comment proxy-init/redirect-all-outgoing-to-proxy-port/1702376374
2023/12/12 10:19:35 :; iptables -t nat -A OUTPUT -j PROXY_INIT_OUTPUT -m comment --comment proxy-init/install-proxy-init-output/1702376374
2023/12/12 10:19:35
2023/12/12 10:19:35 end state
------------------------------------------------------------
2023/12/12 10:19:35 :; iptables-save
2023/12/12 10:19:35 # Generated by iptables-save v1.8.7 on Tue Dec 12 10:19:35 2023
*nat
:PREROUTING ACCEPT C0:0]
:INPUT ACCEPT C0:0]
:OUTPUT ACCEPT C0:0]
:POSTROUTING ACCEPT C0:0]
:PROXY_INIT_OUTPUT - U0:0]
:PROXY_INIT_REDIRECT - C0:0]
-A PREROUTING -m comment --comment "proxy-init/install-proxy-init-prerouting/1702376374" -j PROXY_INIT_REDIRECT
-A OUTPUT -m comment --comment "proxy-init/install-proxy-init-output/1702376374" -j PROXY_INIT_OUTPUT
-A PROXY_INIT_OUTPUT -m owner --uid-owner 2102 -m comment --comment "proxy-init/ignore-proxy-user-id/1702376374" -j RETURN
-A PROXY_INIT_OUTPUT -o lo -m comment --comment "proxy-init/ignore-loopback/1702376374" -j RETURN
-A PROXY_INIT_OUTPUT -p tcp -m multiport --dports 443 -m comment --comment "proxy-init/ignore-port-443/1702376374" -j RETURN
-A PROXY_INIT_OUTPUT -p tcp -m comment --comment "proxy-init/redirect-all-outgoing-to-proxy-port/1702376374" -j REDIRECT --to-ports 4140
-A PROXY_INIT_REDIRECT -p tcp -m multiport --dports 4190,4191,4567,4568 -m comment --comment "proxy-init/ignore-port-4190,4191,4567,4568/1702376374" -j RETURN
-A PROXY_INIT_REDIRECT -p tcp -m comment --comment "proxy-init/redirect-all-incoming-to-proxy-port/1702376374" -j REDIRECT --to-ports 4143
COMMIT
# Completed on Tue Dec 12 10:19:35 2023
2023/12/12 10:19:35
This is resolved after restart the VM, its seems proper resources were not allocated and which got resolved after restart the VM..
Thanks all for your help.