NodeSpec constructor

const NodeSpec({
  1. NodeConfigSource? configSource,
  2. String? externalID,
  3. String? podCIDR,
  4. List<String>? podCIDRs,
  5. String? providerID,
  6. List<Taint>? taints,
  7. bool? unschedulable,
})

Default constructor.

Implementation

const NodeSpec({
  this.configSource,
  this.externalID,
  this.podCIDR,
  this.podCIDRs,
  this.providerID,
  this.taints,
  this.unschedulable,
});