Kubernetesのバージョンアップしてから、HorizontalPodAutoscalerのマニフェストを適用時に以下のエラーが出てます。
エラー内容
Error from server (BadRequest): error when creating "xxx.yaml": HorizontalPodAutoscaler in version "v2" cannot be handled as a HorizontalPodAutoscaler: strict decoding error: unknown field "spec.metrics[0].resource.targetAverageUtilization"
環境
- Kubernetes v1.27.3
原因
Kubernetesのバージョンを上げたことにより、HorizontalPodAutoscalerのバージョンがv2になったため、v1のマニフェストを適用しようとしてエラーが出ています。
対応
HorizontalPodAutoscalerのマニフェストをv2に書き換える必要があります。Kubernetesのバージョン1.23以降では、autoscaling/v2beta2
からautoscaling/v2
に変更されています。
旧マニフェストの例
apiVersion: autoscaling/v2beta1 # <- ここを変更する必要がある!!kind: HorizontalPodAutoscaler
metadata:
name: sample-autoscale
namespace: default
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: web-php-load
minReplicas: 1
maxReplicas: 10
metrics:
- type: Resource
# ↓ ここの記述を変更する必要がある
resource:
name: cpu
targetAverageUtilization: 50
次の箇所を変更します。
apiVersion
autoscaling/v2beta1
からautoscaling/v2
に書き換えます。
spec.metrics
resource.targetAverageUtilization
をresource.target.averageUtilization
に書き換えます。
新マニフェストの例
apiVersion: autoscaling/v2kind: HorizontalPodAutoscaler
metadata:
name: sample-autoscale
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: sample-deployment
minReplicas: 1
maxReplicas: 10
metrics:
- type: Resource
resource:
name: cpu
target:
type: Utilization
averageUtilization: 50
参考
https://zenn.dev/htnk128/articles/bebef67ce64f62