Skip to content

Commit

Permalink
Update port number to 27780 (where did I get 27730?)
Browse files Browse the repository at this point in the history
  • Loading branch information
LRitzdorf committed Jun 24, 2024
1 parent 1531068 commit 4ab6c9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ LABEL org.opencontainers.image.authors="Lucas Ritzdorf <[email protected]>"

# Define API base URLs
## TPM-manager webserver's port for POST requests
ARG TPM_PORT=27730
ARG TPM_PORT=27780
ENV TPM_PORT=$TPM_PORT
## OPAAL server for auth token provisioning
ENV OPAAL_URL=http://opaal:3333
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func main() {
nodes := SafeUpdatingSlice{length: make(chan int)}

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

0 comments on commit 4ab6c9f

Please sign in to comment.