diff --git a/.github/workflows/knative-docs-image.yaml b/.github/workflows/knative-docs-image.yaml index 407df15bc30..14c9204260a 100644 --- a/.github/workflows/knative-docs-image.yaml +++ b/.github/workflows/knative-docs-image.yaml @@ -35,6 +35,7 @@ jobs: - name: Build mkdocs image uses: docker/build-push-action@v6 + continue-on-error: true with: push: true file: ./hack/docker/Dockerfile @@ -42,6 +43,7 @@ jobs: - name: Build helloworld-go image uses: docker/build-push-action@v6 + continue-on-error: true with: push: true platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x @@ -50,14 +52,16 @@ jobs: - name: Build autoscale-go image uses: docker/build-push-action@v6 + continue-on-error: true with: push: true platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x - context: ./docs/serving/autoscaling/autoscale-go + context: ./docs/versioned/serving/autoscaling/autoscale-go tags: ghcr.io/knative/autoscale-go:latest - name: Build sample-app's frontend image uses: docker/build-push-action@v6 + continue-on-error: true with: push: true platforms: linux/amd64,linux/arm64 @@ -66,6 +70,7 @@ jobs: - name: Build sample-app's node-server image uses: docker/build-push-action@v6 + continue-on-error: true with: push: true platforms: linux/amd64,linux/arm64 diff --git a/docs/versioned/serving/autoscaling/autoscale-go/README.md b/docs/versioned/serving/autoscaling/autoscale-go/README.md index 610554824d2..c0c1caaf00c 100644 --- a/docs/versioned/serving/autoscaling/autoscale-go/README.md +++ b/docs/versioned/serving/autoscaling/autoscale-go/README.md @@ -26,7 +26,7 @@ A demonstration of the autoscaling capabilities of a Knative Serving Revision. 1. Deploy the [sample](service.yaml) Knative Service: ```bash - kubectl apply -f docs/serving/autoscaling/autoscale-go/service.yaml + kubectl apply -f docs/versioned/serving/autoscaling/autoscale-go/service.yaml ``` 1. Obtain the URL of the service (once `Ready`): @@ -255,7 +255,7 @@ customization (32 minutes). ## Cleanup ```bash -kubectl delete -f docs/serving/autoscaling/autoscale-go/service.yaml +kubectl delete -f docs/versioned/serving/autoscaling/autoscale-go/service.yaml ``` ## Further reading