Skip to content

Commit

Permalink
Release v2.45.0 (#1153)
Browse files Browse the repository at this point in the history
* Release v2.45.0

* fix changelog

* minor vsphere provider defaults change

---------

Co-authored-by: Xavier <[email protected]>
  • Loading branch information
taylorbot and vxav authored Oct 25, 2023
1 parent 95d54fa commit b3d4808
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
13 changes: 8 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project's packages adheres to [Semantic Versioning](http://semver.org/s

## [Unreleased]

## [2.45.0] - 2023-10-25

### Added

- `cluster template` for up-to-date vsphere cluster app.

## [2.44.0] - 2023-10-16

### Changed
Expand All @@ -17,10 +23,6 @@ and this project's packages adheres to [Semantic Versioning](http://semver.org/s

- `kubectl-gs login`: listen only on localhost for callbacks

### Added

- `cluster template` for up-to-date vsphere cluster app.

## [2.43.0] - 2023-10-11

### Added
Expand Down Expand Up @@ -1325,7 +1327,8 @@ This release supports rendering for CRs:
- `AppCatalog`
- `App`

[Unreleased]: https://github.com/giantswarm/kubectl-gs/compare/v2.44.0...HEAD
[Unreleased]: https://github.com/giantswarm/kubectl-gs/compare/v2.45.0...HEAD
[2.45.0]: https://github.com/giantswarm/kubectl-gs/compare/v2.44.0...v2.45.0
[2.44.0]: https://github.com/giantswarm/kubectl-gs/compare/v2.43.0...v2.44.0
[2.43.0]: https://github.com/giantswarm/kubectl-gs/compare/v2.42.0...v2.43.0
[2.42.0]: https://github.com/giantswarm/kubectl-gs/compare/v2.41.1...v2.42.0
Expand Down
4 changes: 2 additions & 2 deletions cmd/template/cluster/flag.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ func (f *flag) Init(cmd *cobra.Command) {
// VSphere only
cmd.Flags().StringVar(&f.VSphere.ControlPlane.IP, flagVSphereControlPlaneIP, "", "Control plane IP, leave empty for auto allocation.")
cmd.Flags().StringVar(&f.VSphere.ServiceLoadBalancerCIDR, flagVSphereServiceLoadBalancerCIDR, "", "CIDR for Service LB for new cluster")
cmd.Flags().StringVar(&f.VSphere.NetworkName, flagVSphereNetworkName, "grasshopper-capv", "Network name in vcenter that should be used for the new VMs")
cmd.Flags().StringVar(&f.VSphere.NetworkName, flagVSphereNetworkName, "", "Network name in vcenter that should be used for the new VMs")
cmd.Flags().StringVar(&f.VSphere.ControlPlane.IPPoolName, flagVSphereControlPlaneIpPool, "wc-cp-ips", "Name of `GlobalInClusterIpPool` CR from which the IP for CP is taken")
cmd.Flags().IntVar(&f.VSphere.ControlPlane.DiskGiB, flagVSphereControlPlaneDiskGiB, 50, "Disk size in GiB for control individual plane nodes")
cmd.Flags().IntVar(&f.VSphere.ControlPlane.MemoryMiB, flagVSphereControlPlaneMemoryMiB, 8096, "Memory size in MiB for individual control plane nodes")
Expand All @@ -251,7 +251,7 @@ func (f *flag) Init(cmd *cobra.Command) {
cmd.Flags().IntVar(&f.VSphere.Worker.MemoryMiB, flagVSphereWorkerMemoryMiB, 14144, "Memory size in MiB for individual worker plane nodes")
cmd.Flags().IntVar(&f.VSphere.Worker.NumCPUs, flagVSphereWorkerNumCPUs, 6, "Number of CPUs for individual worker plane nodes")
cmd.Flags().IntVar(&f.VSphere.Worker.Replicas, flagVSphereWorkerReplicas, 3, "Number of worker plane replicas")
cmd.Flags().StringVar(&f.VSphere.ResourcePool, flagVSphereResourcePool, "grasshopper", "What resource pool in vsphere should be used")
cmd.Flags().StringVar(&f.VSphere.ResourcePool, flagVSphereResourcePool, "*/Resources", "What resource pool in vsphere should be used")
cmd.Flags().StringVar(&f.VSphere.ImageTemplate, flagVSphereImageTemplate, "ubuntu-2004-kube-%s", "OS images with Kubernetes that should be used for VMs. The '%s' will be replaced with correct Kubernetes version.")
cmd.Flags().StringVar(&f.VSphere.CredentialsSecretName, flagVSphereCredentialsSecretName, "vsphere-credentials", "Name of the secret in K8s that should be associated to cluster app. It should exist in the organization's namesapce and should contain the credentials for vsphere.")

Expand Down
2 changes: 1 addition & 1 deletion pkg/project/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var (
gitSHA = "n/a"
name = "kubectl-gs"
source = "https://github.com/giantswarm/kubectl-gs"
version = "2.44.0"
version = "2.45.0"
)

func Description() string {
Expand Down

0 comments on commit b3d4808

Please sign in to comment.