this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: use new renamed registry URL

Khue Doan 8ca9279d 5ae9618b

+14 -14
+1 -1
apps/khuedoan/blog/local.yaml
··· 8 8 containers: 9 9 main: 10 10 image: 11 - repository: zot.zot.svc.cluster.local/khuedoan/blog 11 + repository: registry.registry.svc.cluster.local/khuedoan/blog 12 12 tag: 14a7a5703e1fc11abb5c30e88a098e5d27a1c57e 13 13 service: 14 14 main:
+1 -1
apps/test/example/local.yaml
··· 8 8 containers: 9 9 main: 10 10 image: 11 - repository: zot.zot.svc.cluster.local/example-service 11 + repository: registry.registry.svc.cluster.local/example-service 12 12 tag: v6.9.0 13 13 service: 14 14 main:
+1 -1
apps/test/example/production.yaml
··· 8 8 containers: 9 9 main: 10 10 image: 11 - repository: zot.zot.svc.cluster.local/example-service 11 + repository: registry.registry.svc.cluster.local/example-service 12 12 tag: 828c31f942e8913ab2af53a2841c180586c5b7e1 13 13 env: 14 14 # TODO this secret was created manually in vault
+5 -5
controller/activities/app_test.go
··· 109 109 containers: 110 110 main: 111 111 image: 112 - repository: zot.zot.svc.cluster.local/example-service 112 + repository: registry.registry.svc.cluster.local/example-service 113 113 tag: 828c31f942e8913ab2af53a2841c180586c5b7e1 114 114 service: 115 115 main: ··· 119 119 port: 8080 120 120 protocol: HTTP`, 121 121 newImages: []Image{ 122 - {Repository: "zot.zot.svc.cluster.local/example-service", Tag: "abc123def456789012345678901234567890abcd"}, 122 + {Repository: "registry.registry.svc.cluster.local/example-service", Tag: "abc123def456789012345678901234567890abcd"}, 123 123 }, 124 124 expectedUpdate: true, 125 125 }, ··· 336 336 containers: 337 337 main: 338 338 image: 339 - repository: zot.zot.svc.cluster.local/example-service 339 + repository: registry.registry.svc.cluster.local/example-service 340 340 tag: 828c31f942e8913ab2af53a2841c180586c5b7e1 341 341 service: 342 342 main: ··· 346 346 port: 8080 347 347 protocol: HTTP`, 348 348 newImages: []Image{ 349 - {Repository: "zot.zot.svc.cluster.local/example-service", Tag: "newgithash12345678901234567890"}, 349 + {Repository: "registry.registry.svc.cluster.local/example-service", Tag: "newgithash12345678901234567890"}, 350 350 }, 351 351 expectedTags: map[string]string{ 352 - "zot.zot.svc.cluster.local/example-service": "newgithash12345678901234567890", 352 + "registry.registry.svc.cluster.local/example-service": "newgithash12345678901234567890", 353 353 }, 354 354 }, 355 355 }
+3 -3
controller/workflows/app_update_test.go
··· 236 236 Namespace: "test", 237 237 App: "example", 238 238 Cluster: "local", 239 - Registry: "zot.zot.svc.cluster.local", 239 + Registry: "registry.registry.svc.cluster.local", 240 240 NewImages: []activities.Image{ 241 - {Repository: "zot.zot.svc.cluster.local/example-service", Tag: "newcommithash123"}, 241 + {Repository: "registry.registry.svc.cluster.local/example-service", Tag: "newcommithash123"}, 242 242 {Repository: "docker.io/redis", Tag: "7.0-alpine"}, 243 243 }, 244 244 } 245 245 workspace := "/tmp/cloudlab-repos/jkl012" 246 246 appFilePath := workspace + "/apps/test/example/local.yaml" 247 247 mockPushResult := &activities.PushResult{ 248 - Reference: "zot.zot.svc.cluster.local/test/example:local", 248 + Reference: "registry.registry.svc.cluster.local/test/example:local", 249 249 Digest: "sha256:def789abc123", 250 250 } 251 251
+3 -3
platform/local/app-engine.yaml
··· 35 35 app: 36 36 image: 37 37 # TODO bootstrap and build itself 38 - # repository: zot.zot.svc.cluster.local/khuedoan/app-engine 38 + # repository: registry.registry.svc.cluster.local/khuedoan/app-engine 39 39 repository: docker.io/khuedoan/app-engine 40 40 tag: 4118f906ab07a17f3dac608f1a690b2215e4d2a5 41 41 pullPolicy: Always 42 42 env: 43 43 TEMPORAL_URL: http://temporal-frontend.temporal:7233 44 - REGISTRY: zot.zot.svc.cluster.local 44 + REGISTRY: registry.registry.svc.cluster.local 45 45 docker: 46 46 image: 47 47 repository: docker.io/library/docker ··· 49 49 command: 50 50 - dockerd 51 51 - --host=unix:///var/run/docker.sock 52 - - --insecure-registry=zot.zot.svc.cluster.local 52 + - --insecure-registry=registry.registry.svc.cluster.local 53 53 securityContext: 54 54 privileged: true 55 55 persistence: