-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add image digest option to tibidata-api-go (#15)
- add tibiadata-api-go.image helper - add readme for tibiadata-api-go chart - bump helm chart version
- Loading branch information
1 parent
82032aa
commit 1d80d43
Showing
5 changed files
with
63 additions
and
3 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,46 @@ | ||
# tibiadata-api-go Helm chart | ||
|
||
## Installation | ||
|
||
To add the tibiadata helm repo, run: | ||
|
||
```console | ||
helm repo add tibiadata https://charts.tibiadata.com | ||
helm repo update | ||
``` | ||
|
||
To install a release named tibiadata-api-go, run: | ||
|
||
```console | ||
helm install tibiadata-api-go tibiadata/tibiadata-api-go | ||
``` | ||
|
||
## Chart Values | ||
|
||
```console | ||
helm show values tibiadata/tibiadata-api-go | ||
``` | ||
|
||
## Value Details | ||
|
||
### image | ||
|
||
Specify the container image to use for the deployment. `image.tag` For example, the following sets the image to the `ghcr.io/tibiadata/tibiadata-api-go` repo and the `v4.1.2` tag. The container pulls the image if not already present: | ||
|
||
```yaml | ||
image: | ||
repository: ghcr.io/tibiadata/tibiadata-api-go | ||
tag: v4.1.2 | ||
pullPolicy: IfNotPresent | ||
``` | ||
The chart also supports specifying an image based on digest value: | ||
```yaml | ||
image: | ||
repository: ghcr.io/tibiadata/tibiadata-api-go | ||
digest: sha256:a6f902768cb71c0a0b391ec167146cd75bc07f063ad84f9022d98f7459f301bb | ||
pullPolicy: IfNotPresent | ||
``` | ||
If neither tag or digest is specified, the `appVersion` of the chart is used as a default. |
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