Skip to content

Commit

Permalink
Major changes required for JLP/JLS
Browse files Browse the repository at this point in the history
Add endpoint for downloading archive of repository, add endpoint for deleting user, fork and create repo return remote URLs, fix user being required to change their password upon first login, change port to 9000
  • Loading branch information
frostyfan109 committed May 3, 2024
1 parent 9d21850 commit a013fed
Show file tree
Hide file tree
Showing 15 changed files with 269 additions and 44 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ To run the application, simply execute:
go run main.go
```

This will start an HTTP server on port 8000.
This will start an HTTP server on port 9000.

## Kubernetes Secret Creator for Gitea Credentials (mk_passwd.py)

Expand Down
4 changes: 2 additions & 2 deletions chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ spec:
livenessProbe:
httpGet:
path: /liveness
port: 8000
port: 9000
readinessProbe:
httpGet:
path: /readiness
port: 8000
port: 9000
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:
Expand Down
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ securityContext: {}

service:
type: ClusterIP
port: 8000
port: 9000

ingress:
enabled: false
Expand Down
Loading

0 comments on commit a013fed

Please sign in to comment.