Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove v1alpha3 version #1396

Merged
merged 3 commits into from
Nov 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 0 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
.gitignore
docs
examples
!examples/v1alpha3/nas
!examples/v1beta1/nas
manifests
pkg/ui/*/frontend/node_modules
pkg/ui/*/frontend/build
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,4 @@ jobs:
install:
- npm install --global prettier@1.19.1
script:
- make prettier-check-v1alpha3
- make prettier-check
117 changes: 10 additions & 107 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 0 additions & 16 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
required = [
"github.com/emicklei/go-restful",
"github.com/onsi/ginkgo", # for test framework
"github.com/onsi/gomega", # for test matchers
"k8s.io/client-go/plugin/pkg/client/auth/gcp", # for development against gcp
"k8s.io/code-generator/cmd/deepcopy-gen", # for deepcopy generation
"k8s.io/code-generator/cmd/openapi-gen", # for openapi generation
"sigs.k8s.io/controller-tools/cmd/controller-gen", # for crd/rbac generation
"sigs.k8s.io/controller-runtime/pkg/client/config",
"sigs.k8s.io/controller-runtime/pkg/controller",
"sigs.k8s.io/controller-runtime/pkg/handler",
Expand Down Expand Up @@ -73,19 +70,6 @@ required = [
name = "k8s.io/client-go"
version = "kubernetes-1.12.9"

[[override]]
name = "k8s.io/apiextensions-apiserver"
version = "kubernetes-1.12.9"

[[override]]
name = "k8s.io/kubernetes"
version = "v1.13.3"

[[override]]
name = "gopkg.in/fsnotify.v1"
source = "https://github.com/fsnotify/fsnotify.git"
version="v1.4.7"

[[constraint]]
name = "github.com/kubeflow/tf-operator"
branch = "v0.7-branch"
Expand Down
16 changes: 0 additions & 16 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,10 @@ vet:
update:
hack/update-gofmt.sh

# Deploy Katib v1alpha3 manifests into a k8s cluster
deployv1alpha3:
bash scripts/v1alpha3/deploy.sh

# Deploy Katib v1beta1 manifests into a k8s cluster
deploy:
bash scripts/v1beta1/deploy.sh

# Undeploy Katib v1alpha3 manifests from a k8s cluster
undeployv1alpha3:
bash scripts/v1alpha3/undeploy.sh

# Undeploy Katib v1beta1 manifests from a k8s cluster
undeploy:
bash scripts/v1beta1/undeploy.sh
Expand All @@ -55,21 +47,13 @@ endif
go generate ./pkg/... ./cmd/...
hack/gen-python-sdk/gen-sdk.sh

# Build images for Katib v1alpha3 components
buildv1alpha3: depend generate
bash scripts/v1alpha3/build.sh

# Build images for Katib v1beta1 components
build: depend generate
ifeq ($(and $(REGISTRY),$(TAG)),)
$(error REGISTRY and TAG must be set. Usage make build REGISTRY=<registry> TAG=<TAG>)
endif
bash scripts/v1beta1/build.sh -r $(REGISTRY) -t $(TAG)

# Prettier UI format check for Katib v1alpha3
prettier-check-v1alpha3:
npm run format:check --prefix pkg/ui/v1alpha3/frontend

# Prettier UI format check for Katib v1beta1
prettier-check:
npm run format:check --prefix pkg/ui/v1beta1/frontend
26 changes: 0 additions & 26 deletions cmd/db-manager/v1alpha3/Dockerfile

This file was deleted.

Loading