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

feat(armiarma): Initial chart #264

Merged
merged 15 commits into from
Dec 5, 2023
Prev Previous commit
Next Next commit
fix: Launch args
  • Loading branch information
samcm committed Dec 5, 2023
commit 98c5c1ff4e8b741d48c98da8ccfe3e49f8672ca5
4 changes: 2 additions & 2 deletions charts/armiarma/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A distributed p2p network monitoring tool
| affinity | object | `{}` | Affinity configuration for pods |
| annotations | object | `{}` | Annotations for the StatefulSet |
| containerSecurityContext | object | See `values.yaml` | The security context for containers |
| customArgs | list | `["eth2"]` | Custom args for the armiarma container |
| customArgs | list | `["eth2","--persist-connevents=false","--persist-msgs=false"]` | Custom args for the armiarma container |
| customCommand | list | `[]` | Command replacement for the armiarma container |
| extraContainers | list | `[]` | Additional containers |
| extraEnv | list | `[]` | Additional env variables |
Expand Down Expand Up @@ -56,7 +56,7 @@ A distributed p2p network monitoring tool
| priorityClassName | string | `nil` | Pod priority class |
| readinessProbe | object | See `values.yaml` | Readiness probe |
| resources | object | `{}` | Resource requests and limits |
| secretEnv | object | `{"ARMIARMA_BACKUP_INTERVAL":"12h","ARMIARMA_FORK_DIGEST":"0x4a26c58b","ARMIARMA_GOSSIP_TOPICS":"beacon_block","ARMIARMA_LOG_LEVEL":"info","ARMIARMA_PERSIST_CONNEVENTS":"false","ARMIARMA_PSQL":"postgres://{{ $.Values.global.postgresql.auth.user }}:{{ $.Values.global.postgresql.auth.password }}@{{ include \"armiarma.fullname\" $ }}-postgresql:5432/{{ $.Values.global.postgresql.auth.database }}","ARMIARMA_SUBNETS":"all"}` | Env variables injected via a created secret |
| secretEnv | object | `{"ARMIARMA_BACKUP_INTERVAL":"12h","ARMIARMA_FORK_DIGEST":"0x4a26c58b","ARMIARMA_GOSSIP_TOPICS":"beacon_block","ARMIARMA_LOG_LEVEL":"info","ARMIARMA_PSQL":"postgres://{{ $.Values.global.postgresql.auth.user }}:{{ $.Values.global.postgresql.auth.password }}@{{ include \"armiarma.fullname\" $ }}-postgresql:5432/{{ $.Values.global.postgresql.auth.database }}","ARMIARMA_SUBNETS":"all"}` | Env variables injected via a created secret |
| securityContext | object | See `values.yaml` | The security context for pods |
| service.type | string | `"ClusterIP"` | Service type |
| serviceAccount.annotations | object | `{}` | Annotations to add to the service account |
Expand Down
3 changes: 2 additions & 1 deletion charts/armiarma/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ image:
# -- Custom args for the armiarma container
customArgs:
- eth2
- --persist-connevents=false
- --persist-msgs=false

# -- Command replacement for the armiarma container
customCommand: []
Expand All @@ -35,7 +37,6 @@ secretEnv:
ARMIARMA_FORK_DIGEST: "0x4a26c58b"
ARMIARMA_GOSSIP_TOPICS: "beacon_block"
ARMIARMA_SUBNETS: "all"
ARMIARMA_PERSIST_CONNEVENTS: "false"

# When p2pNodePort is enabled, your P2P port will be exposed via service type NodePort.
# This will generate a service for each replica, with a port binding via NodePort.
Expand Down
Loading