Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
more Packet to Equinix Metal name changes
Browse files Browse the repository at this point in the history
Signed-off-by: Imran Pochi <imran@kinvolk.io>
  • Loading branch information
ipochi committed Aug 23, 2021
1 parent a079610 commit 4c1c9bf
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Check the [installation guide](https://kinvolk.io/docs/lokomotive/latest/install

Follow one of the quickstart guides for the supported platforms:

* [Packet quickstart](https://kinvolk.io/docs/lokomotive/latest/quickstarts/packet)
* [Equinix Metal quickstart](https://kinvolk.io/docs/lokomotive/latest/quickstarts/equinix-metal)
* [AWS quickstart](https://kinvolk.io/docs/lokomotive/latest/quickstarts/aws)
* [Bare metal quickstart](https://kinvolk.io/docs/lokomotive/latest/quickstarts/baremetal)

Expand All @@ -47,9 +47,9 @@ Follow one of the quickstart guides for the supported platforms:
### How to guides

* [Backup Rook Ceph volume on S3 using Velero](https://kinvolk.io/docs/lokomotive/latest/how-to-guides/backup-rook-ceph-volumes)
* [Kubernetes storage with Rook Ceph on Packet cloud](https://kinvolk.io/docs/lokomotive/latest/how-to-guides/rook-ceph-storage)
* [Kubernetes storage with Rook Ceph on Equinix Metal](https://kinvolk.io/docs/lokomotive/latest/how-to-guides/rook-ceph-storage)
* [Set up monitoring on Lokomotive](https://kinvolk.io/docs/lokomotive/latest/how-to-guides/monitoring-with-prometheus-operator)
* [Setting up an HTTP ingress controller on Lokomotive with MetalLB and Contour on Packet](https://kinvolk.io/docs/lokomotive/latest/how-to-guides/ingress-with-contour-metallb)
* [Setting up an HTTP ingress controller on Lokomotive with MetalLB and Contour on Equinix Metal](https://kinvolk.io/docs/lokomotive/latest/how-to-guides/ingress-with-contour-metallb)
* [Setting up cluster authentication on Lokomotive with GitHub, Dex and Gangway](https://kinvolk.io/docs/lokomotive/latest/how-to-guides/authentication-with-dex-gangway)
* [Setting up third party OAuth for Grafana](https://kinvolk.io/docs/lokomotive/latest/how-to-guides/setup-thirdparty-auth-for-grafana)
* [Upgrading bootstrap kubelet](https://kinvolk.io/docs/lokomotive/latest/how-to-guides/upgrade-bootstrap-kubelet)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module "bootkube" {
network_mtu = var.network_mtu
etcd_endpoints = metal_device.controllers.*.access_private_ipv4

# Select private Packet NIC by using the can-reach Calico autodetection option with the first
# Select private Equinix Metal NIC by using the can-reach Calico autodetection option with the first
# controller's private IP.
network_ip_autodetection_method = "can-reach=${metal_device.controllers[0].access_private_ipv4}"

Expand All @@ -31,17 +31,17 @@ module "bootkube" {
# Extra flags to API server.
kube_apiserver_extra_flags = var.kube_apiserver_extra_flags

# Block access to Packet metadata service.
# Block access to Equinix Metal metadata service.
#
# https://www.packet.com/developers/docs/servers/key-features/metadata/
# https://metal.equinix.com/developers/docs/servers/metadata/
#
# metadata.packet.net should always resolve to 192.80.8.124.
# metadata.platformequinix.net should always resolve to 192.80.8.124.
blocked_metadata_cidrs = ["192.80.8.124/32"]

bootstrap_tokens = var.enable_tls_bootstrap ? concat([local.controller_bootstrap_token], var.worker_bootstrap_tokens) : []
enable_tls_bootstrap = var.enable_tls_bootstrap

# We install calico-host-protection chart on Packet which ships GNPs, so we can disable failsafe ports in Calico.
# We install calico-host-protection chart on Equinix Metal which ships GNPs, so we can disable failsafe ports in Calico.
failsafe_inbound_host_ports = []
encrypt_pod_traffic = var.encrypt_pod_traffic

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ storage:
:OUTPUT ACCEPT [0:0]
-A INPUT -i lo -j ACCEPT
-A INPUT -p tcp --dport 22 -j ACCEPT
# Use 10.0.0.0/8 as this is Packet private network CIDR.
# Use 10.0.0.0/8 as this is Equinix Metal private network CIDR.
# It will be closed more tightly via Calico, which rules are easy to update.
-A INPUT -s 10.0.0.0/8 -p tcp --dport 179 -j ACCEPT
-A INPUT -s 10.0.0.0/8 -p tcp --dport 2379 -j ACCEPT
Expand Down
Loading

0 comments on commit 4c1c9bf

Please sign in to comment.