Skip to content

Commit 1ece801

Browse files
committed
add technical FAQ
1 parent 32dca40 commit 1ece801

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

FAQ.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# FAQ
2+
3+
## Technical help
4+
5+
### Get the Load Balancer Public IP address
6+
7+
```bash
8+
kubectl get service -n ingress-nginx -o jsonpath='{.items[?(@.spec.type=="LoadBalancer")].status.loadBalancer.ingress[0].ip}'
9+
```
10+
11+
### Get the `dockerconfigjson` from the secret
12+
13+
```bash
14+
kubectl get secret ocir-secret --output="jsonpath={.data.\.dockerconfigjson}" | base64 --decode | jq
15+
```

0 commit comments

Comments
 (0)