# Copyright 2019 The Knative Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Staging cluster configuration

PROJECT                   := knative-tests-staging
PROW_GCS                  := knative-prow-staging
PROW_HOST                 := https://prow-staging.knative.dev
TESTGRID_GCS              := knative-testgrid-staging

KNATIVE_CONFIG   := config_staging.yaml

include ../prow_common.mk

# Append to update-all-boskos-deployments: only 3 replicas of janitor
update-all-boskos-deployments::
	$(SET_BUILD_CLUSTER_CONTEXT)
	kubectl patch deployment boskos-janitor -n test-pods -p '{"spec":{"replicas":3}}'
	$(UNSET_CONTEXT)

update-almost-all-cluster-deployments::
	$(SET_CONTEXT)
	$(eval host := $(subst https://,,$(PROW_HOST)))
	kubectl get ingress -oyaml | sed "s/prow.knative.dev/$(host)/" | kubectl apply -f -
	$(UNSET_CONTEXT)
