From e9c028624bd3a7bff07d85ae5c0e43771af2fa60 Mon Sep 17 00:00:00 2001 From: rseymour Date: Thu, 15 Feb 2024 16:26:44 -0500 Subject: [PATCH 1/3] container file callout --- content/containers/creating-image.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/containers/creating-image.md b/content/containers/creating-image.md index 052bf87..1d0c655 100644 --- a/content/containers/creating-image.md +++ b/content/containers/creating-image.md @@ -4,6 +4,10 @@ linkTitle: "Creating a Vertica image" weight: 10 --- +{{% alert title="Note" color="warning" %}} +This tutorial describes the Dockerfile for Vertica versions 23.4 and lower. +{{% /alert %}} + [Vertica on Kubernetes](https://www.vertica.com/docs/latest/HTML/Content/Authoring/Containers/Kubernetes/ContainerizedVerticaWithK8s.htm) deploys an [Eon Mode database](https://www.vertica.com/docs/latest/HTML/Content/Authoring/Eon/EonOverview.htm) in a Kubernetes StatefulSet. The [Vertica server image](https://hub.docker.com/r/vertica/vertica-k8s) is optimized for Kubernetes, using the minimum tools and libraries requried to containerize Vertica. This tutorial describes the components of our minimal Vertica image so you can build a custom Vertica image for development or production purposes. The Dockerfile reduces image size with a multistage build, and orders instructions for the most efficient cache and build. From 02d639ab546e4e724d5eb0f0ac5ca749458775b0 Mon Sep 17 00:00:00 2001 From: rseymour Date: Thu, 15 Feb 2024 16:28:05 -0500 Subject: [PATCH 2/3] changed to pageinfo shortcode --- content/containers/creating-image.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/containers/creating-image.md b/content/containers/creating-image.md index 1d0c655..c65d7e5 100644 --- a/content/containers/creating-image.md +++ b/content/containers/creating-image.md @@ -4,9 +4,9 @@ linkTitle: "Creating a Vertica image" weight: 10 --- -{{% alert title="Note" color="warning" %}} +{{% pageinfo color="primary" %}} This tutorial describes the Dockerfile for Vertica versions 23.4 and lower. -{{% /alert %}} +{{% /pageinfo %}} [Vertica on Kubernetes](https://www.vertica.com/docs/latest/HTML/Content/Authoring/Containers/Kubernetes/ContainerizedVerticaWithK8s.htm) deploys an [Eon Mode database](https://www.vertica.com/docs/latest/HTML/Content/Authoring/Eon/EonOverview.htm) in a Kubernetes StatefulSet. The [Vertica server image](https://hub.docker.com/r/vertica/vertica-k8s) is optimized for Kubernetes, using the minimum tools and libraries requried to containerize Vertica. From 69822585d36154a6fa6eb5ae9e70cd3a5678429f Mon Sep 17 00:00:00 2001 From: rseymour Date: Thu, 15 Feb 2024 16:28:44 -0500 Subject: [PATCH 3/3] copy edit --- content/containers/creating-image.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/containers/creating-image.md b/content/containers/creating-image.md index c65d7e5..efc26ed 100644 --- a/content/containers/creating-image.md +++ b/content/containers/creating-image.md @@ -5,7 +5,7 @@ weight: 10 --- {{% pageinfo color="primary" %}} -This tutorial describes the Dockerfile for Vertica versions 23.4 and lower. +This tutorial creates a Dockerfile that is compatible with Vertica versions 23.4 and lower. {{% /pageinfo %}} [Vertica on Kubernetes](https://www.vertica.com/docs/latest/HTML/Content/Authoring/Containers/Kubernetes/ContainerizedVerticaWithK8s.htm) deploys an [Eon Mode database](https://www.vertica.com/docs/latest/HTML/Content/Authoring/Eon/EonOverview.htm) in a Kubernetes StatefulSet. The [Vertica server image](https://hub.docker.com/r/vertica/vertica-k8s) is optimized for Kubernetes, using the minimum tools and libraries requried to containerize Vertica.