-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update notes, default values, new TLS configuration.
- Loading branch information
thanhnc2
committed
May 4, 2024
1 parent
40ce7a5
commit f70be04
Showing
6 changed files
with
52 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Congratulated! Your registry server is hosted at: | ||
http{{ if $.Values.registry.tls.enabled }}s{{ end }}://{{ $.Values.registry.host | default "registry.local" }} | ||
|
||
You have to update your Hosts/DNS to make it works. | ||
|
||
After that, you can now use: docker login {{ $.Values.registry.host | default "registry.local" }} | ||
then push a new image to it. Cheers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,7 +110,7 @@ spec: | |
livenessProbe: | ||
tcpSocket: | ||
port: 6379 | ||
-readinessProbe: | ||
readinessProbe: | ||
tcpSocket: | ||
port: 6379 | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,25 @@ | ||
redis: | ||
enabled: true | ||
redis: {} | ||
# enabled: true | ||
# replicaCount: 1 | ||
# memoryLimit: 2Gi | ||
# cpuLimit: "1" | ||
|
||
registry: | ||
replicaCount: 1 | ||
registry: | ||
# replicaCount: 1 | ||
# username: | ||
# password: | ||
maxUploadSize: 30m # maximum upload file | ||
host: registry.local | ||
# maxUploadSize: 30m # maximum upload file | ||
# host: registry.local | ||
# garbageCron: "* * * * *" # set the time to run docker image garbage collection, default is run daily at 00:00 AM | ||
# memoryLimit: 2Gi | ||
# cpuLimit: "1" | ||
tls: {} | ||
# enabled: true | ||
# secretName: "" | ||
# cert: | | ||
# -----BEGIN CERTIFICATE----- | ||
# -----END CERTIFICATE----- | ||
# key: | | ||
# -----BEGIN PRIVATE KEY----- | ||
# -----END PRIVATE KEY----- | ||
|