5 pronunciation exercises on Kubernetes resource type names that DevOps engineers use in daily operations.
0 / 5 completed
1 / 5
How is "Ingress" pronounced?
Ingress is pronounced "IN-gress" /ˈɪŋɡrɛs/ — two syllables: IN (stressed, short /ɪ/) + gress (/ɡrɛs/). Stress is on the first syllable. The word means "entry point" in general English, and in Kubernetes it describes the resource that routes external HTTP/S traffic to services. In a sentence: "Configure the Ingress resource with a TLS secret to terminate HTTPS at the cluster edge."
2 / 5
How is "DaemonSet" pronounced?
DaemonSet is pronounced "DEE-mun set" /ˈdiːmən sɛt/ — three syllables total: DEE (stressed, long /iː/) + mun (schwa /mən/) + set (/sɛt/). "Daemon" /ˈdiːmən/ is a Unix background process; the word comes from Greek mythology. Stress falls on the first syllable "DEE." In a sentence: "Deploy the log-shipper as a DaemonSet so one pod runs on every node in the cluster."
3 / 5
How is "StatefulSet" pronounced?
StatefulSet is pronounced "STAYT-ful set" /ˈsteɪtfəl sɛt/ — three syllables: STAYT (stressed, long /eɪ/) + ful (unstressed /fəl/) + set (/sɛt/). Stress is on the very first syllable "STAYT." The word "stateful" means something that maintains persistent state, contrasted with "stateless." In a sentence: "Databases like PostgreSQL should be deployed as a StatefulSet with persistent volume claims."
4 / 5
How is "PVC" pronounced?
PVC (PersistentVolumeClaim) is pronounced "PEE-VEE-SEE" /piː viː siː/ — three letter names spoken individually. Equal stress. In everyday Kubernetes conversation you will hear engineers say "pee-vee-see" rapidly, but each letter is still distinct. It is never blended into a word. In a sentence: "The StatefulSet template requests a 10Gi PVC from the standard StorageClass."
5 / 5
How is "ConfigMap" pronounced?
ConfigMap is pronounced "KON-fig map" /ˈkɒnfɪɡ mæp/ — three syllables: KON (stressed, short /ɒ/) + fig (/fɪɡ/) + map (/mæp/). Stress is on the first syllable "KON." It is a compound of "config" and "map," and in speech the two parts are run together with only a slight break. In a sentence: "Store the application's environment settings in a ConfigMap rather than hardcoding them in the image."