Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

migrate to standard charts dir, enable lint #106

Closed
wants to merge 4 commits into from
Closed
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
37 changes: 37 additions & 0 deletions .github/workflows/lint-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Lint and Test Charts

on: pull_request

jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Helm
uses: azure/setup-helm@v3
with:
version: v3.12.1

- uses: actions/setup-python@v4
with:
python-version: '3.9'
check-latest: true

- name: Set up chart-testing
uses: helm/chart-testing-action@v2.4.0

- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
fi

- name: Run chart-testing (lint)
if: steps.list-changed.outputs.changed == 'true'
run: ct lint --target-branch ${{ github.event.repository.default_branch }}
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,3 @@ ports:
celestiaTokenService: 5353
bridgeRPC: 26658
bridgeHTTP: 26659


File renamed without changes.
File renamed without changes.
12 changes: 6 additions & 6 deletions helm/rollup/values.yaml → charts/rollup/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ config:
faucet:
# The account from which the faucet disburses funds, likely want to have
# the corresponding account given a balance in genesis accounts.
# Note: When secretProvider.enabled is true the secret provided by
# Note: When secretProvider.enabled is true the secret provided by
# `evmPrivateKey` is used instead of this value.
privateKey: "8b3a7999072c9c9314c084044fe705db11714c6c4ed7cddb64da18ea270dd203"
# The amount of token to give per request
Expand All @@ -39,15 +39,15 @@ config:
sequencer:
# Block height to start syncing rollup from
initialBlockHeight: 1
# Websocket connection used for
# Websocket connection used for
websocket: "ws://sequencer-service:26657/websocket"
# URL path for the sequencer
rpc: "http://sequencer-service:26657"
# Private key which is used for wrapping txs for sequencer submission
# Note: When secretProvider.enabled is true the secret provided by
# Note: When secretProvider.enabled is true the secret provided by
# `sequencerPrivateKey` is used instead of this value.
privateKey: "2bd806c97f0e00af1a1fc3328fa763a9269723c8db8fac4f93af71db186d6e90"

# Configuration for Celestia DA
celestia:
# Full node which client will connect to
Expand All @@ -62,7 +62,7 @@ images:
# Rollup faucet
faucet: "ghcr.io/astriaorg/ria-faucet:0.0.1"

# Pertaining to deploying blockscout block explorer
# Pertaining to deploying blockscout block explorer
blockscout:
core: "docker.io/blockscout/blockscout:5.1.0"
postgres: "docker.io/library/postgres:14"
Expand All @@ -88,7 +88,7 @@ secretProvider:
filename: evmPrivateKey.txt
resourceName: "projects/$PROJECT_ID/secrets/evmPrivateKey/versions/latest"
key: token

# Default persistent storage values
# NOTE - `rollupName` will be used with `persistentVolumeName` to generate names for kubernetes resources.
# e.g. astria-executor-pv, astria-executor-pvc
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading