...
1"""
2Name: Emissary
3Description: Emissary-Ingress
4Repo: https://github.com/emissary-ingress/emissary
5Release Cadence: Each minor version (usually every 3 months) and security patches.
6
7Upgrade Steps:
81. Set the `VERSION` variable to the new version.
92. Run `just third_party/k8s/emissary/update`
103. Update digest(s)
11"""
12
13VERSION = "v3.9.1"
14REGISTRY = "index.docker.io"
15DIGEST = "sha256:17374fc250f8194a156dd16db9b58359cd170b5e18de6dc213b4830f47f58ce8"
16REPO = "emissaryingress/emissary"
17
18EMISSARY_IMAGES = {
19 "emissary": {
20 "TAG": VERSION,
21 "REGISTRY": REGISTRY,
22 "DIGEST": DIGEST,
23 "REPO": REPO,
24 "DESTINATION_REPO": REGISTRY + "/" + REPO,
25 },
26}
View as plain text