...

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

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

     1src := "source.tar.gz"
     2manifests := "manifests"
     3url := "https://github.com/redpanda-data/redpanda-operator/archive"
     4
     5update version="2.3.5-24.3.2":
     6  rm -rf {{manifests}}
     7  curl -Lo {{src}} {{url}}/refs/tags/v{{version}}.tar.gz
     8  tar zxvf {{src}}
     9  mv redpanda-operator-{{version}}/src/go/k8s/config {{manifests}}
    10  rm -rf {{src}} redpanda-operator-{{version}} {{manifests}}/samples {{manifests}}/e2e-tests {{manifests}}/crd/bases/toolkit.fluxcd.io
    11  rm {{manifests}}/crd/kustomization.yaml
    12  ./replace-crd-kustomization.sh {{manifests}}
    13  rm {{manifests}}/crd/bases/crds.go
    14  rm {{manifests}}/crd/bases/crds_test.go

View as plain text