Trying to build an application on GCE through kubeadm so while accessing the external IP the status showing as pending .
LoadBalancer service type is Ingress Nginx
Cluster information:
Kubernetes version:
Cloud being used: GCP
Installation method: Kubeadm
Host OS: Ubuntu 18.04
Ingress Nginx.yaml
kind: Service
apiVersion: v1
metadata:
name: ingress-nginx
namespace: ingress-nginx
labels:
app.kubernetes.io/name: ingress-nginx
app.kubernetes.io/part-of: ingress-nginx
spec:
type: LoadBalancer
selector:
app.kubernetes.io/name: ingress-nginx
app.kubernetes.io/part-of: ingress-nginx
ports:
- name: http
port: 80
targetPort: http
- name: https
port: 443
targetPort: https
Help me to solve this issue
–!>