I have a Kubernetes cluster version 1.16.13 running within Azure. .Net core services are running within this cluster. I need to access an external service which requires installation of certificate in my certificate store. In order to do so, the certificate ".crt" file is copied using t...
apiVersion: kubeadm.k8s.io/v1beta2 kind: ClusterConfiguration clusterName: kubernetes kubernetesVersion: v1.21.7 certificatesDir: /etc/kubernetes/pki controllerManager: {} controlPlaneEndpoint: "192.168.9.153:6445" imageRepository: registry.aliyuncs.com/google_containers apiServer: timeoutForControlPlane...
Edit kubernetes-dashboard service, Change type: ClusterIP to type: NodePort NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE kubernetes-dashboard NodePort 10.100.105.239 <none> 443:30778/TCP 1h Accessing dashboard on Master Node curl https://192.168.56.3:30778 -k <!doctype html> ...