Skip to content

Commit 053637d

Browse files
authored
chore(controlplane): remove authURL deprecated code (#86)
--------- Signed-off-by: Miguel Martinez Trivino <[email protected]>
1 parent 573d221 commit 053637d

File tree

6 files changed

+99
-165
lines changed

6 files changed

+99
-165
lines changed

app/controlplane/configs/config.devel.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
server:
66
http:
77
addr: 0.0.0.0:8000
8-
external_addr: localhost:8000
98
timeout: 1s
109
http_metrics:
1110
addr: 0.0.0.0:5000

app/controlplane/internal/conf/conf.pb.go

Lines changed: 80 additions & 96 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/controlplane/internal/conf/conf.pb.validate.go

Lines changed: 1 addition & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/controlplane/internal/conf/conf.proto

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,9 @@ message Server {
5050
message HTTP {
5151
string network = 1;
5252
string addr = 2;
53-
// Hostname for the HTTP server to get redirected (deprecated)
54-
// Optional
55-
string external_addr = 3 [deprecated = true];
5653
// In the form of [scheme]://[host] i.e https://instance.chainloop.dev
5754
// Optional
58-
string external_url = 4 [(validate.rules).string.uri = true];
55+
string external_url = 4;
5956
google.protobuf.Duration timeout = 5;
6057
}
6158

0 commit comments

Comments
 (0)