
If you need to allow insecure connections (non-SSL) to your K8S API Server, following is how you can get this done.
First Open your API Server manifest.
sudo vim /etc/kubernetes/manifests/kube-apiserver.yaml
Now add the following properties.
- --insecure-bind-address=0.0.0.0
- --insecure-port=8080
The complete kube-apiserver.yaml will look like following, (This is a fraction of the yaml file)
apiVersion: v1
kind:...