Chris Stryczynski
Chris Stryczynski

Reputation: 34091

Is there anything like a config reference for Kubernetes?

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?

Upvotes: 1

Views: 98

Answers (1)

Fabien
Fabien

Reputation: 4960

What about reading the Kubernetes Resources Reference Documentation?

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

Upvotes: 1

Related Questions