Skip to content
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
3 changes: 2 additions & 1 deletion content/blog/tour-pulumi-equinix-provider/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: "A Tour of the Pulumi Equinix Provider"
date: 2023-06-28
lastmod: 2026-06-26
meta_desc: Learn to use the capabilities of the Pulumi Equinix Provider, including how to deploy Kubernetes on Equinix Metal.
meta_image: tour-equinix-provider.png
authors:
Expand Down Expand Up @@ -149,7 +150,7 @@ deployment = k8s.apps.v1.Deployment(

## Adding storage

Our cluster as configured will not be able to run stateful workloads due to the lack of a [StorageClass](https://kubernetes.io/docs/concepts/storage/storage-classes/) from which [PersistentVolumes](https://kubernetes.io/docs/concepts/storage/persistent-volumes/) can be provisioned. Popular storage options for bare-metal/edge Kubernetes clusters include [Portworx](https://www.purestorage.com/products/cloud-native-applications/portworx.html), [Longhorn](https://longhorn.io/), [Rook](https://rook.io/), or (for non-production scenarios as data loss is likely if a node goes down) [NFS](https://kubernetes.io/docs/concepts/storage/storage-classes/#nfs).
Our cluster as configured will not be able to run stateful workloads due to the lack of a [StorageClass](https://kubernetes.io/docs/concepts/storage/storage-classes/) from which [PersistentVolumes](https://kubernetes.io/docs/concepts/storage/persistent-volumes/) can be provisioned. Popular storage options for bare-metal/edge Kubernetes clusters include [Portworx](https://portworx.com/), [Longhorn](https://longhorn.io/), [Rook](https://rook.io/), or (for non-production scenarios as data loss is likely if a node goes down) [NFS](https://kubernetes.io/docs/concepts/storage/storage-classes/#nfs).

## Conclusion

Expand Down
1 change: 1 addition & 0 deletions scripts/link-checker/check-links.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ function getDefaultExcludedKeywords() {
"/docs/get-started/install/versions",
"https://api.pulumi.com/",
"https://github.com/pulls?",
"https://github.com/pulumi/pulumi/projects", // additionalRoutes crawls github.com/pulumi/pulumi; GitHub's own page links to its now-deprecated /projects tab (HTTP 400). Not in our content.
"https://github.com/pulumi/docs/edit/master",
"https://github.com/pulumi/docs/issues/new",
"https://github.com/pulumi/registry/edit/master",
Expand Down
Loading