Skip to content

Commit 4ab6c9f

Browse files
committed
Update port number to 27780 (where did I get 27730?)
1 parent 1531068 commit 4ab6c9f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ LABEL org.opencontainers.image.authors="Lucas Ritzdorf <[email protected]>"
1313

1414
# Define API base URLs
1515
## TPM-manager webserver's port for POST requests
16-
ARG TPM_PORT=27730
16+
ARG TPM_PORT=27780
1717
ENV TPM_PORT=$TPM_PORT
1818
## OPAAL server for auth token provisioning
1919
ENV OPAAL_URL=http://opaal:3333

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func main() {
2929
nodes := SafeUpdatingSlice{length: make(chan int)}
3030

3131
// Configure and parse arguments
32-
port := flag.Int("port", 27730, "port on which to listen for POSTs")
32+
port := flag.Int("port", 27780, "port on which to listen for POSTs")
3333
interval := flag.Duration("interval", 5*time.Minute, "how frequently to run Ansible, regardless of buffer length")
3434
batchSize := flag.Int("batch-size", 100, "how full the node buffer must be to trigger a non-timed push")
3535
playbook := flag.String("playbook", "main.yaml", "Ansible playbook to run against nodes")

0 commit comments

Comments
 (0)