File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,16 @@ All notable changes to this project will be documented in this file.
4
4
5
5
## [ Unreleased]
6
6
7
+ ### Changed
8
+
9
+ - Set defaults to oci ([ #57 ] ).
10
+
7
11
### Fixed
8
12
9
13
- Reduce max poll delay from 10s to 3s to have better client responsiveness
10
14
15
+ [ #57 ] : https://github.com/stackabletech/trino-lb/pull/57
16
+
11
17
## [ 0.3.2] - 2024-08-20
12
18
13
19
### Changed
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ allow_k8s_contexts('cluster-admin@sbernauer-demo-oidc')
2
2
3
3
# If tilt_options.json exists read it and load the default_registry value from it
4
4
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' )
6
6
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"
8
8
default_registry (registry )
9
9
10
10
# meta = read_json('nix/meta.json')
Original file line number Diff line number Diff line change 16
16
} ;
17
17
}
18
18
, 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 } "
20
20
, dockerTag ? null
21
21
} :
22
22
rec {
You can’t perform that action at this time.
0 commit comments