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

Commit

Permalink
init lint, set base maintainer (#111)
Browse files Browse the repository at this point in the history
solves #110

---------

Co-authored-by: WafflesVonMaple <scott@earnalliance.com>
  • Loading branch information
WafflesVonMaple and WafflesVonMaple authored Oct 12, 2023
1 parent 4f1f2aa commit 1a578b7
Show file tree
Hide file tree
Showing 55 changed files with 81 additions and 15 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
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 }}
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,18 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.0
version: 0.2.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.16.0"

maintainers:
- name: wafflesvonmaple
url: astria.org
- name: steezeburger
url: astria.org
- name: joroshiba
url: astria.org
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.
10 changes: 9 additions & 1 deletion helm/rollup/Chart.yaml → charts/rollup/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,18 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.3.2
version: 0.3.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.3.0"

maintainers:
- name: wafflesvonmaple
url: astria.org
- name: steezeburger
url: astria.org
- name: joroshiba
url: astria.org
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 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 Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,18 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.1
version: 0.2.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.1.0"

maintainers:
- name: wafflesvonmaple
url: astria.org
- name: steezeburger
url: astria.org
- name: joroshiba
url: astria.org
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ ingress:
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
labels: {}
path: {}
path: {}
# pathType is only for k8s >= 1.1=
pathType: Prefix
pathType: Prefix
hosts: {}
# - chart-example.local
service: {}
Expand Down
File renamed without changes.
10 changes: 9 additions & 1 deletion helm/sequencer/Chart.yaml → charts/sequencer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,18 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.3.2
version: 0.3.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.5.1"

maintainers:
- name: wafflesvonmaple
url: astria.org
- name: steezeburger
url: astria.org
- name: joroshiba
url: astria.org
4 changes: 2 additions & 2 deletions helm/sequencer/values.yaml → charts/sequencer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ ingress:
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
labels: {}
path: {}
path: {}
# pathType is only for k8s >= 1.1=
pathType: Prefix
pathType: Prefix
hosts: {}
# - chart-example.local
service: {}
Expand Down

0 comments on commit 1a578b7

Please sign in to comment.