Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
09dbe02
hack/build: allow building outside of GOPATH
Oct 18, 2019
04f0836
Drop tests
Oct 19, 2019
2236050
Use go modules and remove vendored files
Oct 18, 2019
f5662b3
Use ignition v3.0 and update MCO
Aug 27, 2019
dee51dd
Remove azure
Oct 19, 2019
9ce59d1
Merge go.mod's into one
Oct 19, 2019
26b6a57
Bump MCO
Oct 21, 2019
a8c30d2
rhcos.json: use Fedora CoreOS AMIs instead of RHCOS
Nov 1, 2019
6d12439
hack/build.sh: remove unused LAUNCH_PATH
Oct 23, 2019
0d9c761
bootstrap: pull MCD image, copy machine-config-daemon binary and run …
Oct 23, 2019
065479d
bootstrap: overwrite all files by default
Oct 19, 2019
44c3a5b
Install cgroups config for bootstrap
Oct 20, 2019
9cc0081
bootstrap.sh: set nosmt and drop cgroupsv2 on all machines
Nov 1, 2019
a706df7
Update images/mock to go 1.12 and include generated gcp mock
Oct 24, 2019
dcfec39
go get -u golang.org/x/lint/golint
Oct 24, 2019
6cbf970
Bump golang version to 1.12
Fedosin Oct 18, 2019
8d1ec7d
vendor update
Oct 24, 2019
aed6109
hack/build.sh: get vfsgen before "go generate"
Oct 25, 2019
be577f9
hack/verify-vendor: use "go mod vendor" instead of dep
Oct 25, 2019
accd9f3
hack/yaml-lint: link pkg/ only
Oct 25, 2019
f8ebf8b
Fix unittests
Oct 25, 2019
6fd3474
bootkube.sh: fix machine-config-daemon extraction
Oct 30, 2019
02ea3f8
Add crio-configure.service Before=bootkube.service
cgwalters Aug 29, 2019
1c7e76d
kubelet.service: Sync up with MCO
cgwalters Sep 6, 2019
cd7711d
Use "bash strict mode" for bootkube and release-image-download
cgwalters Aug 29, 2019
e5a58b3
Run crio-configure after bootstrap has pivot
Oct 30, 2019
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
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
1,486 changes: 0 additions & 1,486 deletions Gopkg.lock

This file was deleted.

134 changes: 0 additions & 134 deletions Gopkg.toml

This file was deleted.

1 change: 0 additions & 1 deletion cmd/openshift-install/destroy.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import (
assetstore "github.com/openshift/installer/pkg/asset/store"
"github.com/openshift/installer/pkg/destroy"
_ "github.com/openshift/installer/pkg/destroy/aws"
_ "github.com/openshift/installer/pkg/destroy/azure"
_ "github.com/openshift/installer/pkg/destroy/baremetal"
"github.com/openshift/installer/pkg/destroy/bootstrap"
_ "github.com/openshift/installer/pkg/destroy/gcp"
Expand Down
11 changes: 0 additions & 11 deletions cmd/openshift-install/gather.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,11 @@ import (
"github.com/openshift/installer/pkg/gather/ssh"
"github.com/openshift/installer/pkg/terraform"
gatheraws "github.com/openshift/installer/pkg/terraform/gather/aws"
gatherazure "github.com/openshift/installer/pkg/terraform/gather/azure"
gathergcp "github.com/openshift/installer/pkg/terraform/gather/gcp"
gatherlibvirt "github.com/openshift/installer/pkg/terraform/gather/libvirt"
gatheropenstack "github.com/openshift/installer/pkg/terraform/gather/openstack"
"github.com/openshift/installer/pkg/types"
awstypes "github.com/openshift/installer/pkg/types/aws"
azuretypes "github.com/openshift/installer/pkg/types/azure"
gcptypes "github.com/openshift/installer/pkg/types/gcp"
libvirttypes "github.com/openshift/installer/pkg/types/libvirt"
openstacktypes "github.com/openshift/installer/pkg/types/openstack"
Expand Down Expand Up @@ -146,15 +144,6 @@ func extractHostAddresses(config *types.InstallConfig, tfstate *terraform.State)
if err != nil {
logrus.Error(err)
}
case azuretypes.Name:
bootstrap, err = gatherazure.BootstrapIP(tfstate)
if err != nil {
return bootstrap, port, masters, err
}
masters, err = gatherazure.ControlPlaneIPs(tfstate)
if err != nil {
logrus.Error(err)
}
case gcptypes.Name:
bootstrap, err = gathergcp.BootstrapIP(tfstate)
if err != nil {
Expand Down
166 changes: 0 additions & 166 deletions data/data/azure/bootstrap/main.tf

This file was deleted.

Loading