OpenShift Node Selector Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 22: Line 22:


More details in: {{Internal|oadm new-project|oadm new-project}}
More details in: {{Internal|oadm new-project|oadm new-project}}


The node selector can be added after the project was created by editing the namespace metadata with [[oc edit]]:
The node selector can be added after the project was created by editing the namespace metadata with [[oc edit]]:


  oc edit namespace ''<my-project>''
  oc edit namespace ''<my-project>''
  ...
  ...
  metadata:
  metadata:

Revision as of 04:45, 6 July 2017

Internal

Overview

Operations to manipulate node selectors.

Configuring a Cluster-Wide Default Node Selector

https://docs.openshift.com/container-platform/3.5/admin_guide/managing_projects.html#setting-the-cluster-wide-default-node-selector

Sets up a cluster-wide default node selector.

Configuring a Per-Project Node Selector

https://docs.openshift.com/container-platform/3.5/admin_guide/managing_projects.html#setting-the-project-wide-node-selector

The per-project node selector can be set up when the project is created:

oadm new-project <project-name> --node-selector='keyA=valueA,keyB=valueB'

More details in:

oadm new-project

The node selector can be added after the project was created by editing the namespace metadata with oc edit:

oc edit namespace <my-project>
...
metadata:
  annotations:
    openshift.io/node-selector: "env=infra"
...

Edit the "namespace", and not the "project", if attempting to edit the project you will get an error message saying that the field is immutable.

Configuring a Per-Pod Node Selector

https://docs.openshift.com/container-platform/3.5/admin_guide/managing_projects.html#developer-specified-node-selectors

The per-pod node selector.