Skip to content
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
1 change: 1 addition & 0 deletions .github/workflows/dictionary/kubernetes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ flowcontrol
flowschemas
gmsa
horizontalpodautoscaler
inferenceobjectives
ingressgateway
istiod
jobset
Expand Down
2 changes: 1 addition & 1 deletion platforms/gke/base/_shared_config/workloads_variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ variable "inference_gateway_kubernetes_namespace" {
}

variable "inference_gateway_version" {
default = "1.0.0"
default = "1.1.0"
description = "Version of Gateway API Inference Extension (https://github.com/kubernetes-sigs/gateway-api-inference-extension) to install."
type = string
}
Expand Down
3 changes: 2 additions & 1 deletion platforms/gke/base/core/deploy-standard.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ MY_PATH="$(
declare -a CORE_TERRASERVICES_APPLY_ARRAY=(
"networking"
"container_cluster"
"container_node_pool"
# Disabled due to gke version role out
#"container_node_pool"
"gke_enterprise/fleet_membership"
"workloads/cluster_credentials"
"custom_compute_class"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ resource "terraform_data" "crd_manifests" {
command = <<EOT
mkdir -p ${self.input.version_manifests_dir} && \
mkdir -p ${self.input.manifests_dir} && \
wget https://github.com/kubernetes-sigs/gateway-api-inference-extension/releases/download/v${self.input.version}/manifests.yaml -O ${self.input.version_manifests_dir}/manifests.yaml && \
wget https://github.com/kubernetes-sigs/gateway-api-inference-extension/raw/v${self.input.version}/config/crd/bases/inference.networking.x-k8s.io_inferenceobjectives.yaml -O ${self.input.version_manifests_dir}/inference.networking.x-k8s.io_inferenceobjectives.yaml && \
cp -r ${self.input.version_manifests_dir}/* ${self.input.manifests_dir}/
EOT
interpreter = ["bash", "-c"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ ACP_PLATFORM_CORE_DIR="${ACP_PLATFORM_BASE_DIR}/core"
declare -a CORE_TERRASERVICES_APPLY_ARRAY=(
"networking"
"container_cluster"
"container_node_pool"
# Disabled due to gke version role out
#"container_node_pool"
"cloudbuild/initialize"
"gke_enterprise/fleet_membership"
"gke_enterprise/configmanagement/oci"
Expand Down
Loading