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

Minor fixes to make crc-cloud workable with latest 4.16.X OCP version #193

Merged
merged 2 commits into from
Oct 8, 2024
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
4 changes: 2 additions & 2 deletions oci/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN make build \
&& curl -LO ${PULUMI_URL} \
&& tar -xzvf pulumi-${PULUMI_VERSION}-linux-x64.tar.gz

FROM quay.io/centos/centos:stream9@sha256:3b68f482785306a9aa02726ed7f256cea6bd681162ca5996090e2f797fceaabb
FROM quay.io/centos/centos:stream9@sha256:e6653a0d104d2e77580a87811e88215339ccea8f4cc497efa475e88a4ebd4cd5

LABEL MAINTAINER "CRC <devtools-cdk@redhat.com>"

Expand Down Expand Up @@ -40,7 +40,7 @@ ARG PULUMI_AWS_VERSION=v6.23.0
ARG PULUMI_GCP_VERSION=v7.11.0

# renovate: datasource=github-releases depName=pulumi/pulumi-azure-native
ARG PULUMI_AZURE_NATIVE_VERSION=v2.30.0
ARG PULUMI_AZURE_NATIVE_VERSION=v2.64.0

# renovate: datasource=github-releases depName=pulumi/pulumi-openstack
ARG PULUMI_OPENSTACK_VERSION=v3.15.1
Expand Down
2 changes: 1 addition & 1 deletion pkg/util/command/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

const (
// https://www.pulumi.com/docs/intro/concepts/resources/options/customtimeouts/
commandTimeout string = "20m"
commandTimeout string = "40m"
)

func CopyFile(ctx *pulumi.Context, resourceName string,
Expand Down