Skip to content

Commit

Permalink
changing port to 8080
Browse files Browse the repository at this point in the history
  • Loading branch information
akoserwal committed Feb 13, 2024
1 parent c7c09e0 commit b8bc69b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ COPY --from=builder /workspace/bin/ciam-rebac /usr/local/bin/
COPY --from=builder /workspace/configs/config.yaml /usr/local/bin/

ENV SPICEDB_PRESHARED $SPICEDB_PRESHARED
EXPOSE 8000
EXPOSE 8080
EXPOSE 9000

USER 1001
Expand Down
2 changes: 1 addition & 1 deletion configs/config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
server:
http:
addr: 0.0.0.0:8000
addr: 0.0.0.0:8080
timeout: 1s
grpc:
addr: 0.0.0.0:9000
Expand Down
4 changes: 2 additions & 2 deletions deploy/clowdapp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ objects:
livenessProbe:
httpGet:
path: /livez
port: 8000
port: 8080
readinessProbe:
httpGet:
path: /readyz
port: 8000
port: 8080
webServices:
public:
enabled: true
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
profiles: ["rebac"]
restart: "always"
ports:
- "8000:8000"
- "8080:8080"
- "9000:9000"

spicedb:
Expand Down

0 comments on commit b8bc69b

Please sign in to comment.