Is there anything like a config reference for Kubernetes?

8/8/2017

I'd like to know what each 'config' key represents within the usual yaml config (not even sure what it's called) as well as what options / directives are available.

For example what does the following mean:

  ports:
    - containerPort: 80
      name: example

I could google for 'kubernetes ports', but is there a more accurate way to interpret the various configs keys / values?

-- Chris Stryczynski
kubernetes

1 Answer

8/8/2017

What about reading the Kubernetes Resources Reference Documentation?

All the directives are defined here for the various resources exploited by Kubernetes. Eg: ContainerPort v1

-- Fabien
Source: StackOverflow