Skip to content

Commit

Permalink
final fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
neoaggelos committed Jun 25, 2024
1 parent f8676fe commit 2251f54
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build-scripts/hack/update-component-versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import argparse
import logging
import sys
import yaml
from pathlib import Path
import util

Expand Down Expand Up @@ -69,7 +70,11 @@ def get_cni_version() -> str:


def pull_contour_chart() -> None:
LOG.info("Pulling Contour Helm chart from %s with version %s", CONTOUR_HELM_REPO, CONTOUR_CHART_VERSION)
LOG.info(
"Pulling Contour Helm chart from %s with version %s",
CONTOUR_HELM_REPO,
CONTOUR_CHART_VERSION,
)
util.helm_pull("contour", CONTOUR_HELM_REPO, CONTOUR_CHART_VERSION, CHARTS)


Expand Down
2 changes: 2 additions & 0 deletions src/k8s/pkg/k8sd/features/metallb/chart.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@ import (
)

var (
// chartMetalLB represents manifests to deploy MetalLB speaker and controller.
chartMetalLB = helm.InstallableChart{
Name: "metallb",
Namespace: "metallb-system",
ManifestPath: path.Join("charts", "metallb-0.14.5.tgz"),
}

// chartMetalLBLoadBalancer represents manifests to deploy MetalLB L2 or BGP resources.
chartMetalLBLoadBalancer = helm.InstallableChart{
Name: "metallb-loadbalancer",
Namespace: "metallb-system",
Expand Down

0 comments on commit 2251f54

Please sign in to comment.