...

Source file src/sigs.k8s.io/kustomize/api/internal/konfig/builtinpluginconsts/replicas.go

Documentation: sigs.k8s.io/kustomize/api/internal/konfig/builtinpluginconsts

     1  // Copyright 2019 The Kubernetes Authors.
     2  // SPDX-License-Identifier: Apache-2.0
     3  
     4  package builtinpluginconsts
     5  
     6  const replicasFieldSpecs = `
     7  replicas:
     8  - path: spec/replicas
     9    create: true
    10    kind: Deployment
    11  
    12  - path: spec/replicas
    13    create: true
    14    kind: ReplicationController
    15  
    16  - path: spec/replicas
    17    create: true
    18    kind: ReplicaSet
    19  
    20  - path: spec/replicas
    21    create: true
    22    kind: StatefulSet
    23  `
    24  

View as plain text