Skip to content

Commit 4e241da

Browse files
authored
chore: update to oci references (#57)
* chore: update to oci references * add changelog entry
1 parent 4c381fd commit 4e241da

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,16 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
### Changed
8+
9+
- Set defaults to oci ([#57]).
10+
711
### Fixed
812

913
- Reduce max poll delay from 10s to 3s to have better client responsiveness
1014

15+
[#57]: https://github.com/stackabletech/trino-lb/pull/57
16+
1117
## [0.3.2] - 2024-08-20
1218

1319
### Changed

Tiltfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ allow_k8s_contexts('cluster-admin@sbernauer-demo-oidc')
22

33
# If tilt_options.json exists read it and load the default_registry value from it
44
settings = read_json('tilt_options.json', default={})
5-
registry = settings.get('default_registry', 'docker.stackable.tech/sandbox')
5+
registry = settings.get('default_registry', 'oci.stackable.tech/sandbox')
66

7-
# Configure default registry either read from config file above, or with default value of "docker.stackable.tech/sandbox"
7+
# Configure default registry either read from config file above, or with default value of "oci.stackable.tech/sandbox"
88
default_registry(registry)
99

1010
# meta = read_json('nix/meta.json')

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
};
1717
}
1818
, meta ? pkgs.lib.importJSON ./nix/meta.json
19-
, dockerName ? "docker.stackable.tech/sandbox/${meta.operator.name}"
19+
, dockerName ? "oci.stackable.tech/sandbox/${meta.operator.name}"
2020
, dockerTag ? null
2121
}:
2222
rec {

0 commit comments

Comments
 (0)