...

Text file src/edge-infra.dev/third_party/k8s/multus/justfile

Documentation: edge-infra.dev/third_party/k8s/multus

     1kustomize := "bazel run --config=quiet //hack/tools:kustomize --"
     2push := "bazel run --config=quiet //cmd/tools/pusha --"
     3
     4version := "v4.1.1"
     5push_repo := "us-east1-docker.pkg.dev/ret-edge-pltf-infra/workloads"
     6
     7# Ensure to update the image refs in //:hack/deps/images.bzl
     8update:
     9  bazel run //third_party/k8s/multus:write_multus_daemonset
    10
    11# push images to workloads registry
    12push:
    13  {{push}} --tag={{version}} --repo={{push_repo}} //hack/deps:multus_cni_container_push
    14
    15test-container-pull:
    16  bazel fetch @multus_cni

View as plain text