Skip to content

Commit

Permalink
project code modification to adjust the modification of k8s 1.19
Browse files Browse the repository at this point in the history
Signed-off-by: Thor-wl <13164644535@163.com>
  • Loading branch information
Thor-wl committed Apr 27, 2021
1 parent 0065f4c commit c80bcbe
Show file tree
Hide file tree
Showing 23 changed files with 3,181 additions and 486 deletions.
583 changes: 496 additions & 87 deletions config/crd/bases/batch.volcano.sh_jobs.yaml

Large diffs are not rendered by default.

540 changes: 466 additions & 74 deletions config/crd/v1beta1/batch.volcano.sh_jobs.yaml

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions hack/update-vendor-licenses.sh
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,27 @@ for PACKAGE in $(go list -m -mod=mod -json all | jq -r .Path | sort -f); do
echo "${PACKAGE} doesn't exist in ${DEPS_DIR}, skipping" >&2
continue
fi
if [[ "${PACKAGE}" = "sigs.k8s.io/structured-merge-diff" ]]; then
# this package doesn't exist, but has v3 subdirectory as a different package
# so it can't be filtered by the previous rule
# temporarily treat this way until find out a better rule
echo "${PACKAGE}, temporarily skipping" >&2
continue
fi
if [[ "${PACKAGE}" = "github.com/cespare/xxhash" ]]; then
# there are 2 versions v1 and v2 under 2 folders indirectly used
# so it can't be filtered by the previous rule
# temporarily treat this way until find out a better rule
echo "${PACKAGE}, temporarily skipping" >&2
continue
fi
if [[ "${PACKAGE}" = "k8s.io/klog" ]]; then
# this package doesn't use, but has v2 subdirectory as a different package
# so it can't be filtered by the previous rule
# temporarily treat this way until find out a better rule
echo "${PACKAGE}, temporarily skipping" >&2
continue
fi
echo "${PACKAGE}"

process_content "${PACKAGE}" LICENSE
Expand Down
583 changes: 496 additions & 87 deletions installer/helm/chart/volcano/crd/bases/batch.volcano.sh_jobs.yaml

Large diffs are not rendered by default.

540 changes: 466 additions & 74 deletions installer/helm/chart/volcano/crd/v1beta1/batch.volcano.sh_jobs.yaml

Large diffs are not rendered by default.

540 changes: 466 additions & 74 deletions installer/volcano-development.yaml

Large diffs are not rendered by default.

Loading

0 comments on commit c80bcbe

Please sign in to comment.