Tech Challenge
2026-08-05
☸️
Daily Tech Challenge
Kubernetes
medium
Question 1 of 5
The CustomResourceDefinition below declares additionalPrinterColumns on its v1 version. What do these entries actually change?
Example
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: databases.example.com
spec:
group: example.com
scope: Namespaced
names:
plural: databases
singular: database
kind: Database
versions:
- name: v1
served: true
storage: true
schema:
openAPIV3Schema:
type: object
properties:
spec:
type: object
properties:
engine:
type: string
status:
type: object
properties:
phase:
type: string
additionalPrinterColumns:
- name: Engine
type: string
jsonPath: .spec.engine
- name: Phase
type: string
jsonPath: .status.phase
- name: Age
type: date
jsonPath: .metadata.creationTimestampWednesday, August 5, 2026 · A new challenge drops every day