You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most organizations deploy their own Root Certificate and CA service inside the corporate networks.
13
+
Internal websites, image repositories and other resources may install SSL server certificates issued by this CA service for security and privacy concerns.
14
+
You may install the Root Certificate into the minikube VM to access these corporate resources within the cluster.
15
+
16
+
## Prerequisites
17
+
18
+
- Corporate X.509 Root Certificate
19
+
- Latest minikube binary and ISO
20
+
21
+
## Tutorial
22
+
23
+
* The certificate must be in PEM format. You may use `openssl` to convert from DER format.
24
+
25
+
```
26
+
openssl x509 -inform der -in my_company.cer -out my_company.pem
27
+
```
28
+
29
+
* You may need to delete existing minikube VM
30
+
31
+
```shell
32
+
minikube delete
33
+
```
34
+
35
+
* Copy the certificate before creating the minikube VM
0 commit comments