Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert dugtrio pull policy and set version tag #255

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/dugtrio/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ home: https://github.com/ethpandaops/dugtrio
sources:
- https://github.com/ethpandaops/dugtrio
type: application
version: 0.0.2
version: 0.0.3
appVersion: "1.0.0"
maintainers:
- name: pk910
Expand Down
6 changes: 3 additions & 3 deletions charts/dugtrio/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# dugtrio

![Version: 0.0.2](https://img.shields.io/badge/Version-0.0.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.0.3](https://img.shields.io/badge/Version-0.0.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Fault tolerant load balancer for beacon chain RPC apis

Expand Down Expand Up @@ -62,9 +62,9 @@ endpoints:
| extraVolumes | list | `[]` | Additional volumes |
| fullnameOverride | string | `""` | Overrides the chart's computed fullname |
| httpPort | int | `8080` | HTTP port for dugtrio interface |
| image.pullPolicy | string | `"Always"` | dugtrio container pull policy |
| image.pullPolicy | string | `"IfNotPresent"` | dugtrio container pull policy |
| image.repository | string | `"ethpandaops/dugtrio"` | dugtrio container image repository |
| image.tag | string | `"latest"` | dugtrio container image tag |
| image.tag | string | `"1.0.0"` | dugtrio container image tag |
| ingress.annotations | object | `{}` | Annotations for Ingress |
| ingress.enabled | bool | `false` | Ingress resource for the HTTP API |
| ingress.hosts[0].host | string | `"chart-example.local"` | |
Expand Down
4 changes: 2 additions & 2 deletions charts/dugtrio/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ image:
# -- dugtrio container image repository
repository: ethpandaops/dugtrio
# -- dugtrio container image tag
tag: "latest"
tag: "1.0.0"
# -- dugtrio container pull policy
pullPolicy: Always
pullPolicy: IfNotPresent

# -- Custom args for the dugtrio container
customArgs:
Expand Down