Through 6585f5da (Merge pull request #775 from
wking/pull-secret-for-bootkube.sh, 2018-12-03).
18 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog.
0.5.0 - 2018-12-03
Added
- We now push the ingress custom resource defintion and initial
configuration, allowing the ingress operator to configure itself
without referencing the deprecated
cluster-config-v1resource.
Changed
- Pull secret documentation now points to
try.openshift.com for pull-secret
acquisition, instead of pointing at
account.coreos.com. Users will need to update their pull secrets. - If the automatic bootstrap teardown (which landed in 0.4.0) times
out waiting for the
bootstrap-completeevent, the installer exits with a non-zero exit code. We had ignored watcher timeouts in 0.4.0 due to concerns about watcher robustness, but the current watcher code has been reliable in our continuous integration testing. - The hard-coded
quay.io/coreos/bootkubedependency has been replaced by the new cluster-bootstrap image, which is referenced from the release image. - The etcd service now uses selectors to determine the pods it exposes, and the explict etcd endpoints object is gone (replaced by the one Kubernetes maintains based on the selector).
- On AWS, both masters and worker have moved from t2.medium nodes m4.large nodes (more on AWS instance types here to address CPU and memory constraints.
- On AWS, master volume size has been bumped from 30 GiB to 120 GiB to
increase our baseline performance from on gp2's sliding IOPS
scale from the 100 IOPS floor up to 360 IOPS.
Volume information is not currently supported by the cluster-API
AWS provider's
AWSMachineProviderConfig, so this change is currently limited to masters created by the installer. - On Openstack, we now validate cloud, region, and image-name user input instead of blindly accepting entries.
- On libvirt, we pass Ignition information for masters and workers via secrets instead of passing a libvirt volume path. This makes the libvirt approach consistent with how we already handle AWS and OpenStack.
- Lots of internal cleanup, especially around trimming dead code.
Fixed
-
The
.openshift_install.logaddition from 0.4.0 removed Terraform output from--log-level=debug. We've fixed that in 0.5.0; now.openshift_install.logwill always contain the full Terraform output, while standard error returns to containing the Terraform output if and only if--log-level=debugor higher. -
On AWS teardown, errors retrieving tags for S3 buckets and Route 53 zones are no longer fatal. This allows the teardown code to continue it's exponential backoff and try to remove the bucket or zone later. It avoids some resource leaks we were seeing due to AWS rate limiting on those tag lookups as many simultaneous CI jobs searched for Route 53 zones with their cluster's tags. We'll still hit those rate limits, but they no longer cause us to give up on reaping resources.
-
On AWS, we've removed some unused data blocks, fixing occasional errors like:
data.aws_route_table.worker.1: Your query returned no results. -
On OpenStack, similar retry-during-teardown changes were made for removing ports and for removing subnets from routers.
-
On libvirt, Terraform no longer errors out when launching clusters configured for more than one master, fixing a bug from 0.4.0.
0.4.0 - 2018-11-22
Added
- The creation targets have been moved below a new
createsubcommand (e.g.openshift-install create clusterinstead of the oldopenshift-install cluster). This makes them easier to distinguish from otheropenshift-installsubcommands and also mirrors the approach taken bydestroyin 0.3.0. - A new
manifest-templatestarget has been added tocreate, allowing users to edit templates and have descendant assets generated from their altered templates during a staged install. - The ingress operator is no longer masked. The old Tectonic ingress operator has been removed.
- The the registry operator has been added, and the kube-addon operator which used to provide a registry (among other things) has been removed.
- The checkpointer operator is no longer masked. It runs on the production cluster, but not on the bootstrap node.
- Cloud credentials are now pushed into a secret where they can be consumed by cluster-API operators and other tools.
- OpenStack now has
destroysupport. - We log verbosely to
${INSTALL_DIR}/.openshift_install.logfor most operations, giving access to the logs for troubleshooting even if you neglected to run with--log-level=debug. - We've grown troubleshooting documentation.
Changed
-
The
create clustersubcommand now waits for thebootstrap-completeevent and automatically removes the bootstrap assets after receiving it. This means that aftercreate clusterreturns successfully, the cluster has its production control plane and topology (although there may still be operators working through their initialization). Thebootstrap-completeevent was new in 0.3.0, and it is now pushed at the appropriate time (it was too early in 0.3.0). Thedestroy bootstrapsubcommand is still available, to allow users to manually trigger bootstrap deletion if the automatic removal fails for whatever reason. -
On AWS, bootstrap deletion now also removes the S3 bucket used for the bootstrap node's Igntition configuration.
-
Asset state is preserved even while moving backwards through a staged install. For example:
openshift-install --dir=example create ignition-configs openshift-install --dir=example create install-confignow preserves the full state including the generated Ignition configuration. In 0.3.0, the
install-configcall would have removed the Ignition configuration and other downstream assets from the stored state. -
Some asset state is removed by successful
destroy clusterruns. This reduces the change of contaminating future cluster creation with assets left over from a previous cluster, but users are still encouraged to remove state between clusters to avoid accidentally contaminating the subsequent cluster's state. -
etcd discovery now happens via
SRVrecords. On libvirt, this requires a new Terraform provider, so users with older providers should install a newer version. This also allows all masters to use a single Ignition file. -
On AWS, the API and service load balancers have been changed from classic load balancers to network load balancers. This should avoid some latency issues we were seeing with classic load balancers, and network load balancers are cheaper.
-
On AWS, master
Machineentries now include load balancer references, ensuring that new masters created by the AWS cluster-API provider will be attached to the load balancers. -
On AWS and OpenStack, the default network CIDRs have changed to 172.30.0.0/16 for services and 10.128.0.0/14 for the cluster, to be consistent with previous versions of OpenStack.
-
The bootstrap kubelet is no longer part of the production cluster. This reduces complexity and keeps production pods off of the temporary bootstrap node.
-
The cluster-version operator now runs in a static pod on the bootstrap node until the production control plane comes up. This breaks a cyclic dependency between the production API server and operators.
-
The bootstrap control plane now waits for some core pods to come up before exiting.
-
The machine-API operator now reads the install-config from the
cluster-config-v1config-map, instead of from an operator-specific configuration. -
AWS AMIs and libvirt images are now pulled from the new RHCOS pipeline.
-
Updated the security contact information for CoreOS -> Red Hat.
-
We push a
ClusterVersioncustom resource. The oldCVOConfigis still being pushed, but it is deprecated. -
OpenStack credentials are loaded from standard system paths.
-
On AWS and OpenStack, ports 9000-9999 are now open for host network services.
-
Lots of doc and internal cleanup and minor fixes.
Fixed
- On AWS,
destroy clusteris now more robust, removing resources with either thetectonicClusterIDorkubernetes.io/cluster/<name>: ownedtags. It also removes pending instances as well (it used to only remove running instances). - On libvirt,
destroy clusteris now more precise, only removing resources which are prefixed by the cluster name. - Bootstrap Ignition edits (via
create ignition-configs) no longer suffer from aworker.igndependency cycle, which had been clobbering manualbootstrap.ignchanges. - The state-purging implementation respects
--dir, avoidingremove ...: no such file or directoryerrors during staged installs. - Cross-filesystem Terraform state recovery during
destroy bootstrapno longer raisesinvalid cross-device link. - Bootstrap binaries are now located under
/usr/local/bin, avoiding SELinux violations on RHEL 8.
Removed
- All the old Tectonic operators and the
tectonic-systemnamespace have been removed. - On libvirt, the image URI prompt has been removed. You can still
control this via the
OPENSHIFT_INSTALL_LIBVIRT_IMAGEenvironment variable, but too many users were breaking their cluster by pointing the installer at an outdated RHCOS, so we removed the prompt to make that knob less obvious. - On libvirt, we've removed
.gzsuffix handling for images. The new RHCOS pipeline supportsContent-Encoding: gzip, so the suffix-based hack is no longer necessary. - The
destroy-clustercommand, which was deprecated in favor ofdestroy clusterin 0.3.0, has been removed. - The creation target subcommands of
openshift-installhave been removed. Use the target subcommands ofcreateinstead (e.g.openshift-install create clusterinstead ofopenshift-install cluster).
0.3.0 - 2018-10-22
Added
-
Asset state is loaded from the install directory, allowing for a staged install.
-
A new
openshift-install destroy bootstrapcommand destroys the bootstrap resources. Ideally, this would be safe to run after the newbootstrap-completeevent is pushed to thekube-systemnamespace, but there is currently a bug causing that event to be pushed too early. For now, you're on your own figuring out when to call this command.For consistency, the old
destroy-clusterhas been deprecated in favor ofopenshift-install destroy cluster. -
The installer creates worker
MachineSets, instead of leaving that to the machine-API operator. -
The installer creates master
Machines and tags masters to be picked up by the AWS cluster-API provider.
Changed
- The installer now respects the
AWS_PROFILEenvironment variable when launching AWS clusters. - Worker subnets are now created in the appropriate availability zone for AWS clusters.
- Use the released hyperkube and hypershift instead of hard-coded images.
- Lots of changes to keep up with the advancing release image, as OpenShift operators are added to control various cluster components.
- Lots of internal cleanup and minor fixes.
Removed
- The Tectonic kube-core operator, which has been replaced by OpenShift operators.
0.2.0 - 2018-10-12
Added
-
Asset state is preserved between invocations, allowing for a staged install like:
$ openshift-install --dir=example install-config $ openshift-install --dir=example clusterwhich creates a cluster using the same data given in the install-config (including the same random cluster ID, etc.).
-
The kube-apiserver and kube-controller-manager operators are called to render additional cluster manifests.
-
etcd is now available as a service in the
kube-systemnamespace, and the new service is labeled so Prometheus will scrape it. -
The
service-serving-cert-signer-signing-keysecret is now available in theopenshift-service-cert-signernamespace, which gives the service-serving cert signer the keys it needs to mint and manage certificates for Kubernetes services. -
The etcd-serving certificate is now passed through to the kube-controller-manager operator.
-
We disable some components which the cluster-version operator would otherwise install but which conflict with the legacy tectonic-operators.
-
The new
openshift-install graphoutputs the asset graph in the DOT language. -
openshift-install versionnow outputs the Terraform version as well as the installer version.
Changed
- The cluster-version operator is no longer run as a static pod. Instead, we just wait until the control plane comes up and run it them.
- Terraform errors are logged to standard error even when
--log-levelis less thandebug. - Terraform is now invoked with
-no-colorand-input=false. - The
clustertarget now includes both launching the cluster and populatingmetadata.json, regardless of whether theterraforminvocation succeeds. This allowsdestroy-clusterto cleanup cluster resources even when theterraforminvocation fails. - Reported errors now include more context, making them less enigmatic.
- Libvirt image caching is more efficient, caching unzipped images
with a cache that grows by one unzipped image per RHCOS release in
$XDG_CACHE_HOME/openshift-install/libvirt/image. The previous implementation unzipped, when necessary, for every launched cluster, which was slow. And the previous implementation added one unzipped image to/tmpper cluster launch, which consumed more disk space. - Work continues on the OpenStack platform.
- Lots of internal cleanup, especially around asset generation.
Removed
- The operatorstatus CRD. Now the cluster-version operator creates this on its own.
- The
machine-config-operator-imagesconfig-map. Now the cluster-version operator pulls these from the machine-config images. - The
machine-apiapp-version from thetectonic-systemnamespace.
0.1.0 - 2018-10-02
Added
The openshift-install command. This moves us to the new
install-config approach with asset
generation in Go instead of in
Terraform. Terraform is still used to push the assets out to
resources on the backing platform (AWS, libvirt, or OpenStack), but
that push happens in a single Terraform invocation instead of in
multiple steps. This makes installation faster, because more
resources can be created in parallel. openshift-install also
dispenses with the distribution tarball; all required assets except
for a terraform binary are distributed in the openshift-install
binary.
The configuration and command-line interface are quite different, so
previous tectonic users are encouraged to start from scratch when
getting acquainted with openshift-install. AWS users should look
here. Libvirt users should look
here. The new openshift-install also
includes an interactive configuration generator, so you can launch the
installer and follow along as it guides you through the process.
Removed
The tectonic command and tarball distribution are gone. Please use
the new openshift-install command instead.