Skip to content

Commit a48e932

Browse files
committed
fix CI failures
1 parent ea0453b commit a48e932

File tree

4 files changed

+14
-1
lines changed

4 files changed

+14
-1
lines changed

.github/workflows/k8s-publish-test-base-image.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
if: ${{ github.event_name == 'workflow_dispatch' }}
3636
shell: bash
3737
run: |
38+
# shellcheck disable=SC2086
3839
echo "BASE_IMAGE_TAG=${{ secrets.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.QA_AWS_REGION }}.amazonaws.com/test-base-image:${{ github.event.inputs.tag }}" >> $GITHUB_ENV
3940
4041
- name: Build Base Image

lib/k8s/examples/deployment_part/sol.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ func (m Chart) GetValues() *map[string]interface{} {
5050
return m.HelmProps.Values
5151
}
5252

53+
func (m Chart) GetLabels() map[string]string {
54+
return map[string]string{
55+
"chain.link/component": "solana-validator",
56+
}
57+
}
58+
5359
func (m Chart) ExportData(e *environment.Environment) error {
5460
netLocal, err := e.Fwd.FindPort("sol:0", "sol-val", "http-rpc").As(client.LocalConnection, client.HTTP)
5561
if err != nil {

lib/k8s/examples/deployment_part_cdk8s/blockscout.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ func (m Chart) GetValues() *map[string]interface{} {
4747
return nil
4848
}
4949

50+
func (m Chart) GetLabels() map[string]string {
51+
return map[string]string{
52+
"chain.link/component": "blockscout",
53+
}
54+
}
55+
5056
func (m Chart) ExportData(e *environment.Environment) error {
5157
bsURL, err := e.Fwd.FindPort("blockscout:0", "blockscout-node", "explorer").As(client.LocalConnection, client.HTTP)
5258
if err != nil {

lib/k8s/pkg/helm/sol/sol.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func (m Chart) GetVersion() string {
5454

5555
func (m Chart) GetLabels() map[string]string {
5656
return map[string]string{
57-
"chain.link/component": "sol",
57+
"chain.link/component": "solana-validator",
5858
}
5959
}
6060

0 commit comments

Comments
 (0)