From 88050e72d593334195a9deadc70f7883810b4f22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20von=20L=C3=B6wenstein?= Date: Fri, 2 Feb 2024 15:31:42 +0000 Subject: [PATCH] Remove `experimental` mark on extensions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jan von Löwenstein --- buildpack.md | 2 +- image_extension.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/buildpack.md b/buildpack.md index 41badd3..4aa3584 100644 --- a/buildpack.md +++ b/buildpack.md @@ -103,7 +103,7 @@ A **component buildpack** is a buildpack containing `/bin/detect` and `/bin/buil A **composite buildpack** is a buildpack containing an order definition in `buildpack.toml`. Composite buildpacks do not contain `/bin/detect` or `/bin/build` executables. They MUST be [resolvable](#order-resolution) into a collection of component buildpacks. -An **image extension** (**experimental**) is a directory containing an `extension.toml`. Extensions generate Dockerfiles that can be used to define the runtime base image, prior to buildpack execution. Extensions implement the [Image Extension Interface](image-extension.md). Extensions are always "component": their `extension.toml` cannot contain an order definition. +An **image extension** is a directory containing an `extension.toml`. Extensions generate Dockerfiles that can be used to define the runtime base image, prior to buildpack execution. Extensions implement the [Image Extension Interface](image-extension.md). Extensions are always "component": their `extension.toml` cannot contain an order definition. **Resolving an order** is the process by which an order (which may contain image extensions, component buildpacks, or composite buildpacks) is evaluated together with application source code to produce an optional group of image extensions and a required group of component buildpacks that can be used to build the application. This process is known as **detection**. During detection, the `/bin/detect` executable for each image extension (if present) and the `/bin/detect` executable for each component buildpack is invoked. diff --git a/image_extension.md b/image_extension.md index f4e939a..af32258 100644 --- a/image_extension.md +++ b/image_extension.md @@ -1,4 +1,4 @@ -# Image Extension Interface Specification (**experimental**) +# Image Extension Interface Specification This document specifies the interface between a lifecycle program and one or more image extensions.