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
Copy file name to clipboardExpand all lines: docs/tutorials/myra.md
+32-14Lines changed: 32 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,17 +12,32 @@ This guide provides quick instructions for setting up and testing the [Myra Exte
12
12
13
13
## Quick Installation
14
14
15
-
### 1. Build and Push the Docker Image
15
+
### 1. Get the Docker Image
16
+
17
+
#### Pull from container registry
18
+
19
+
The image is published with each version to Github Container Registry under [external-dns-myrasec-webhook](https://github.com/Myra-Security-GmbH/external-dns-myrasec-webhook/pkgs/container/external-dns-myrasec-webhook).
# For the sake of this tutorial, tag the image with "myra-webhook:latest"
26
+
docker image tag ghcr.io/myra-security-gmbh/external-dns-myrasec-webhook:<VERSION> myra-webhook:latest
27
+
28
+
```
29
+
30
+
#### Build and Push the Docker Image
16
31
17
32
```bash
18
33
# From the project root
19
34
docker build -t myra-webhook:latest .
20
35
21
36
# Tag the image for your container registry
22
-
docker tag myra-webhook:latest YOUR_REGISTRY/myra-webhook:latest
37
+
docker tag myra-webhook:latest <YOUR_REGISTRY>/myra-webhook:latest
23
38
24
39
# Push to your container registry
25
-
docker push YOUR_REGISTRY/myra-webhook:latest
40
+
docker push <YOUR_REGISTRY>/myra-webhook:latest
26
41
```
27
42
28
43
> **Important**: The image must be pushed to a container registry accessible by your Kubernetes cluster. Update the image reference in the deployment YAML file to match your registry path.
0 commit comments