Kubernetes - Production Best Practices
Given this PriorityClass YAML and pod spec, what priority value will the pod have?
apiVersion: scheduling.k8s.io/v1
kind: PriorityClass
metadata:
name: high-priority
value: 1000000
globalDefault: false
description: 'High priority class'
---
apiVersion: v1
kind: Pod
metadata:
name: test-pod
spec:
priorityClassName: high-priority
containers:
- name: app
image: nginx