コード例 #1
0
        private NodeConfigStatus(
            Pulumi.Kubernetes.Types.Outputs.Core.V1.NodeConfigSource active,

            Pulumi.Kubernetes.Types.Outputs.Core.V1.NodeConfigSource assigned,

            string error,

            Pulumi.Kubernetes.Types.Outputs.Core.V1.NodeConfigSource lastKnownGood)
        {
            Active        = active;
            Assigned      = assigned;
            Error         = error;
            LastKnownGood = lastKnownGood;
        }
コード例 #2
0
ファイル: NodeSpec.cs プロジェクト: zjj2wry/pulumi-kubernetes
        private NodeSpec(
            Pulumi.Kubernetes.Types.Outputs.Core.V1.NodeConfigSource configSource,

            string externalID,

            string podCIDR,

            ImmutableArray <string> podCIDRs,

            string providerID,

            ImmutableArray <Pulumi.Kubernetes.Types.Outputs.Core.V1.Taint> taints,

            bool unschedulable)
        {
            ConfigSource  = configSource;
            ExternalID    = externalID;
            PodCIDR       = podCIDR;
            PodCIDRs      = podCIDRs;
            ProviderID    = providerID;
            Taints        = taints;
            Unschedulable = unschedulable;
        }