-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update-ssh-key-reconciliation
- Loading branch information
Showing
16 changed files
with
367 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
kind: ENHANCEMENTS | ||
body: '`Workspace`: Update Notifications reconciliation logic to reduce the number of API calls.' | ||
time: 2024-08-21T13:42:40.942036+02:00 | ||
custom: | ||
PR: "477" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
kind: FEATURES | ||
body: '`Workspace`: Add the `destroy` deletion policy. The `spec.allowDestroyPlan` must be set to `true` for the controller to execute a destroy run.' | ||
time: 2024-10-17T09:40:21.262822+02:00 | ||
custom: | ||
PR: "489" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,6 +89,36 @@ USER 65532:65532 | |
|
||
ENTRYPOINT ["/bin/sh", "-c", "/$BIN_NAME"] | ||
|
||
# Red Hat UBI release image | ||
# ----------------------------------- | ||
FROM registry.access.redhat.com/ubi9/ubi-micro:9.4-15 AS release-ubi | ||
|
||
ARG BIN_NAME | ||
ARG PRODUCT_VERSION | ||
ARG PRODUCT_REVISION | ||
ARG TARGETOS | ||
ARG TARGETARCH | ||
|
||
ENV BIN_NAME=$BIN_NAME | ||
|
||
LABEL name="HCP Terraform Operator" | ||
LABEL vendor="HashiCorp" | ||
LABEL release=$PRODUCT_REVISION | ||
LABEL summary="HCP Terraform Operator for Kubernetes allows managing HCP Terraform / Terraform Enterprise resources via Kubernetes Custom Resources" | ||
LABEL description="HCP Terraform Operator for Kubernetes allows managing HCP Terraform / Terraform Enterprise resources via Kubernetes Custom Resources" | ||
|
||
LABEL maintainer="Terraform Ecosystem - Hybrid Cloud Team <[email protected]>" | ||
LABEL version=$PRODUCT_VERSION | ||
LABEL revision=$PRODUCT_REVISION | ||
|
||
WORKDIR / | ||
COPY LICENSE /licenses/copyright.txt | ||
COPY dist/$TARGETOS/$TARGETARCH/$BIN_NAME . | ||
|
||
USER 65532:65532 | ||
|
||
ENTRYPOINT ["/bin/sh", "-c", "/$BIN_NAME"] | ||
|
||
# =================================== | ||
# | ||
# Set default target to 'dev'. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.