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

3.11.0 - May 17, 2024 #124

Merged
merged 2 commits into from
May 17, 2024
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update && apt-get upgrade -y --no-install-recommends \

# Layers used for building/downloading/installing tools
FROM baseline as tool_builder
ARG HELM_VERSION=3.14.2
ARG HELM_VERSION=3.14.4
ARG KUBECTL_VERSION=1.28.7
ARG TERRAFORM_VERSION=1.7.4-*

Expand Down
12 changes: 11 additions & 1 deletion docs/REQUIREMENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Table of Contents
- [Configuration and Restrictions](#configuration-and-restrictions)
- [Bare metal and virtual machine storage example](#bare-metal-and-virtual-machine-storage-example)
- [Terraform storage example](#terraform-storage-example)
- [Additional Configuration](#additional-configuration)
- [Time Synchronization](#time-synchronization)
- [Examples](#examples)
- [vCenter/vSphere Sample tfvars File](#vcentervsphere-sample-tfvars-file)
- [Physical Machine or VM Sample Inventory File](#physical-machine-or-vm-sample-inventory-file)
Expand Down Expand Up @@ -165,6 +167,14 @@ Here is a sample entry that would be included in your terraform tfvars file to d

This snippet shows the four `misc_disks` created on the single store virtual machines.

## Additional Configuration

### Time Synchronization

It is recommended that your vSphere template or Bare Metal instances have a method of time synchronization implemented. This will prevent issues from occurring during the Kubernetes initialization phase.

By default, Ubuntu uses `timedatectl`/`timesyncd` to synchronise time, and they are available and active by default. For more information see this [documentation](https://ubuntu.com/server/docs/use-timedatectl-and-timesyncd) from Ubuntu, this documentation also provides information about configuring a private timeserver if the default public server from Ubuntu is not preferred.

## Examples

This section provides an example configuration based on the physical-machine and vSphere inventory files that are provided in this repository. You are expected to modify the inventory files to match your environment and your requirements.
Expand Down Expand Up @@ -674,4 +684,4 @@ The third-party applications that are listed in the following table are supporte
| [Ansible](https://www.ansible.com/) | Core 2.16.1 |
| [Terraform](https://www.terraform.io/) | 1.7.4 |
| [Docker](https://www.docker.com/) | 20.10.17 |
| [Helm](https://helm.sh/) | 3.14.2 |
| [Helm](https://helm.sh/) | 3.14.4 |
2 changes: 1 addition & 1 deletion roles/kubernetes/common/defaults/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# SPDX-License-Identifier: Apache-2.0

---
helm_version: 3.14.2
helm_version: 3.14.4
Loading