Browse Source

fix: typo (#12517)

pull/12514/head
Kim Hyunyoung, Abel 1 month ago
committed by GitHub
parent
commit
eb26449e80
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
8 changed files with 8 additions and 8 deletions
  1. 2
      Dockerfile
  2. 2
      docs/external_storage_provisioners/scheduler_plugins.md
  3. 2
      pipeline.Dockerfile
  4. 2
      roles/container-engine/cri-o/templates/crio.conf.j2
  5. 2
      roles/kubernetes-apps/ansible/templates/nodelocaldns-second-daemonset.yml.j2
  6. 2
      scripts/Dockerfile.j2
  7. 2
      scripts/pipeline.Dockerfile.j2
  8. 2
      tests/files/almalinux9-calico.yml

2
Dockerfile

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
# Use imutable image tags rather than mutable tags (like ubuntu:22.04)
# Use immutable image tags rather than mutable tags (like ubuntu:22.04)
FROM ubuntu:22.04@sha256:149d67e29f765f4db62aa52161009e99e389544e25a8f43c8c89d4a445a7ca37
# Some tools like yamllint need this

2
docs/external_storage_provisioners/scheduler_plugins.md

@ -7,7 +7,7 @@ The kube-scheduler binary includes a list of plugins:
- [CapacityScheduling](https://github.com/kubernetes-sigs/scheduler-plugins/tree/master/pkg/capacityscheduling) [Beta]
- [CoScheduling](https://github.com/kubernetes-sigs/scheduler-plugins/tree/master/pkg/coscheduling) [Beta]
- [NodeResources](https://github.com/kubernetes-sigs/scheduler-plugins/tree/master/pkg/noderesources) [Beta]
- [NodeResouceTopology](https://github.com/kubernetes-sigs/scheduler-plugins/blob/master/pkg/noderesourcetopology/README.md) [Beta]
- [NodeResourceTopology](https://github.com/kubernetes-sigs/scheduler-plugins/blob/master/pkg/noderesourcetopology/README.md) [Beta]
- [PreemptionToleration](https://github.com/kubernetes-sigs/scheduler-plugins/blob/master/pkg/preemptiontoleration/README.md) [Alpha]
- [Trimaran](https://github.com/kubernetes-sigs/scheduler-plugins/blob/master/pkg/trimaran/README.md) [Alpha]
- [NetworkAware](https://github.com/kubernetes-sigs/scheduler-plugins/blob/master/pkg/networkaware/README.md) [Sample]

2
pipeline.Dockerfile

@ -1,4 +1,4 @@
# Use imutable image tags rather than mutable tags (like ubuntu:22.04)
# Use immutable image tags rather than mutable tags (like ubuntu:22.04)
FROM ubuntu:jammy-20230308
# Some tools like yamllint need this
# Pip needs this as well at the moment to install ansible

2
roles/container-engine/cri-o/templates/crio.conf.j2

@ -204,7 +204,7 @@ default_mounts = [
# limit is never exceeded.
log_size_max = -1
# Whether container output should be logged to journald in addition to the kuberentes log file
# Whether container output should be logged to journald in addition to the kubernetes log file
log_to_journald = false
# Path to directory in which container exit files are written to by conmon.

2
roles/kubernetes-apps/ansible/templates/nodelocaldns-second-daemonset.yml.j2

@ -102,7 +102,7 @@ spec:
type: FileOrCreate
# Implement a time skew between the main nodelocaldns and this secondary.
# Since the two nodelocaldns instances share the :53 port, we want to keep
# at least one running at any time enven if the manifests are replaced simultaneously
# at least one running at any time even if the manifests are replaced simultaneously
terminationGracePeriodSeconds: {{ nodelocaldns_secondary_skew_seconds }}
updateStrategy:
rollingUpdate:

2
scripts/Dockerfile.j2

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
# Use imutable image tags rather than mutable tags (like ubuntu:22.04)
# Use immutable image tags rather than mutable tags (like ubuntu:22.04)
FROM ubuntu:22.04@sha256:149d67e29f765f4db62aa52161009e99e389544e25a8f43c8c89d4a445a7ca37
# Some tools like yamllint need this

2
scripts/pipeline.Dockerfile.j2

@ -1,4 +1,4 @@
# Use imutable image tags rather than mutable tags (like ubuntu:22.04)
# Use immutable image tags rather than mutable tags (like ubuntu:22.04)
FROM ubuntu:jammy-20230308
# Some tools like yamllint need this
# Pip needs this as well at the moment to install ansible

2
tests/files/almalinux9-calico.yml

@ -12,7 +12,7 @@ local_path_provisioner_enabled: true
kube_proxy_mode: nftables
# NTP mangement
# NTP management
ntp_enabled: true
ntp_package: chrony
ntp_timezone: Etc/UTC

Loading…
Cancel
Save