Skip to content

Commit

Permalink
Merge pull request #95 from stefanprodan/up-examples
Browse files Browse the repository at this point in the history
Update example modules and bundles
  • Loading branch information
stefanprodan authored May 3, 2023
2 parents 34d3ce4 + 19a07c6 commit ef335e1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions examples/bundles/podinfo.cue
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
// a podinfo instance connected to Redis using the supplied password.
bundle: {
apiVersion: "v1alpha1"
name: "podinfo"
name: "podinfo"
instances: {
redis: {
module: {
url: "oci://ghcr.io/stefanprodan/modules/redis"
digest: "sha256:e9137d41b0d263bfaf2a43fc862648ad9dc3a976b4b0fc6e27617ea28ee27d45"
version: "7.0.11"
digest: "sha256:0e0f40e7824ff8c59e309d9b8bf19e235c6e779c93aafeeeaa86cbca49989950"
}
namespace: "podinfo"
values: {
Expand All @@ -20,8 +21,11 @@ bundle: {
}
}
podinfo: {
module: url: "oci://ghcr.io/stefanprodan/modules/podinfo"
module: version: "6.3.4"
module: {
url: "oci://ghcr.io/stefanprodan/modules/podinfo"
version: "6.3.6"
digest: "sha256:b317bc7e4736287af10cbf52f9c0f1e8cd1f8c180bba29bc563fe697bfa2dd3d"
}
namespace: "podinfo"
values: caching: {
enabled: true
Expand Down
2 changes: 1 addition & 1 deletion examples/podinfo/templates/config.cue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import (
// Container
image: {
repository: *"ghcr.io/stefanprodan/podinfo" | string
tag: *"6.3.5" | string
tag: *"6.3.6" | string
digest?: string
pullPolicy: *"IfNotPresent" | string
}
Expand Down
2 changes: 1 addition & 1 deletion examples/redis/templates/config.cue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
// Container image
image: {
repository: *"cgr.dev/chainguard/redis" | string
tag: *"7.0.10" | string
tag: *"7.0.11" | string
digest?: string
pullPolicy: *"IfNotPresent" | string
}
Expand Down

0 comments on commit ef335e1

Please sign in to comment.