Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.14.0 Operator Release #142

Merged
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
2 changes: 1 addition & 1 deletion content/en/_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

{{% blocks/feature icon="fa-ship" title="Release v0.14.0 Available!" %}}

Our latest release is now available on GitHub (<a href="https://github.com/shipwright-io/build/releases/tag/v0.14.0">Build Controller</a>, <a href="https://github.com/shipwright-io/cli/releases/tag/v0.14.0" target="_blank">CLI</a><!--, and <a href="https://github.com/shipwright-io/operator/releases/tag/v0.13.0">Operator</a>-->).
Our latest release is now available on GitHub (<a href="https://github.com/shipwright-io/build/releases/tag/v0.14.0">Build Controller</a>, <a href="https://github.com/shipwright-io/cli/releases/tag/v0.14.0" target="_blank">CLI</a> and <a href="https://github.com/shipwright-io/operator/releases/tag/v0.14.0">Operator</a>).
Read more in our <a href="/blog/2024/11/14/shipwright-v0.14.0-is-here/">blog post</a>.

{{% /blocks/feature %}}
Expand Down
18 changes: 18 additions & 0 deletions content/en/blog/posts/2024-11-15-release-v0.14.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ draft: false
author: "Sascha Schwarze ([@SaschaSchwarze0](https://github.com/SaschaSchwarze0))"
---

_Update 2025-01-07: added Operator installation instructions_

We are happy to announce the v0.14.0 release of Shipwright. This is our first release since we have joined the [Cloud Native Computing Foundation (CNCF)](https://www.cncf.io/projects/shipwright/) as a sandbox project.

In this release, we have put together some nice features:
Expand Down Expand Up @@ -85,3 +87,19 @@ curl --silent --fail --location "https://github.com/shipwright-io/cli/releases/d
shp version
shp help
```

### Operator

To deploy and manage Shipwright Builds in your cluster, first ensure the operator v0.14.0 is installed and running on your cluster. You can follow the instructions on [OperatorHub](https://operatorhub.io/operator/shipwright-operator).

Next, create the following:

```yaml
---
apiVersion: operator.shipwright.io/v1alpha1
kind: ShipwrightBuild
metadata:
name: shipwright-operator
spec:
targetNamespace: shipwright-build
```
2 changes: 1 addition & 1 deletion hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ params:
# The version number for the version of the docs represented in this doc set.
# Used in the "version-banner" partial to display a version number for the
# current doc set.
version: v0.13.0
version: v0.14.0

# A link to latest version of the docs. Used in the "version-banner" partial to
# point people to the main doc site.
Expand Down
Loading