@pulumi/rancher2 6.2.0 → 6.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/types/input.d.ts +1874 -0
- package/types/output.d.ts +1874 -0
package/types/output.d.ts
CHANGED
|
@@ -130,6 +130,9 @@ export interface ClusterAgentEnvVar {
|
|
|
130
130
|
* The name of the Cluster (string)
|
|
131
131
|
*/
|
|
132
132
|
name: string;
|
|
133
|
+
/**
|
|
134
|
+
* The GKE taint value (string)
|
|
135
|
+
*/
|
|
133
136
|
value: string;
|
|
134
137
|
}
|
|
135
138
|
export interface ClusterAksConfig {
|
|
@@ -581,10 +584,25 @@ export interface ClusterClusterAgentDeploymentCustomization {
|
|
|
581
584
|
overrideResourceRequirements?: outputs.ClusterClusterAgentDeploymentCustomizationOverrideResourceRequirement[];
|
|
582
585
|
}
|
|
583
586
|
export interface ClusterClusterAgentDeploymentCustomizationAppendToleration {
|
|
587
|
+
/**
|
|
588
|
+
* The GKE taint effect (string)
|
|
589
|
+
*/
|
|
584
590
|
effect?: string;
|
|
591
|
+
/**
|
|
592
|
+
* The GKE taint key (string)
|
|
593
|
+
*/
|
|
585
594
|
key: string;
|
|
595
|
+
/**
|
|
596
|
+
* The toleration operator. `Equal`, and `Exists` are supported. Default: `Equal` (string)
|
|
597
|
+
*/
|
|
586
598
|
operator?: string;
|
|
599
|
+
/**
|
|
600
|
+
* The toleration seconds (int)
|
|
601
|
+
*/
|
|
587
602
|
seconds: number;
|
|
603
|
+
/**
|
|
604
|
+
* The GKE taint value (string)
|
|
605
|
+
*/
|
|
588
606
|
value?: string;
|
|
589
607
|
}
|
|
590
608
|
export interface ClusterClusterAgentDeploymentCustomizationOverrideResourceRequirement {
|
|
@@ -606,8 +624,17 @@ export interface ClusterClusterAgentDeploymentCustomizationOverrideResourceRequi
|
|
|
606
624
|
memoryRequest?: string;
|
|
607
625
|
}
|
|
608
626
|
export interface ClusterClusterAuthEndpoint {
|
|
627
|
+
/**
|
|
628
|
+
* CA certs for the authorized cluster endpoint (string)
|
|
629
|
+
*/
|
|
609
630
|
caCerts?: string;
|
|
631
|
+
/**
|
|
632
|
+
* Enable the authorized cluster endpoint. Default `true` (bool)
|
|
633
|
+
*/
|
|
610
634
|
enabled?: boolean;
|
|
635
|
+
/**
|
|
636
|
+
* FQDN for the authorized cluster endpoint (string)
|
|
637
|
+
*/
|
|
611
638
|
fqdn?: string;
|
|
612
639
|
}
|
|
613
640
|
export interface ClusterClusterMonitoringInput {
|
|
@@ -630,13 +657,25 @@ export interface ClusterClusterRegistrationToken {
|
|
|
630
657
|
[key: string]: any;
|
|
631
658
|
};
|
|
632
659
|
clusterId: string;
|
|
660
|
+
/**
|
|
661
|
+
* Command to execute in a imported k8s cluster (string)
|
|
662
|
+
*/
|
|
633
663
|
command: string;
|
|
634
664
|
/**
|
|
635
665
|
* (Computed) The ID of the resource (string)
|
|
636
666
|
*/
|
|
637
667
|
id: string;
|
|
668
|
+
/**
|
|
669
|
+
* Insecure command to execute in a imported k8s cluster (string)
|
|
670
|
+
*/
|
|
638
671
|
insecureCommand: string;
|
|
672
|
+
/**
|
|
673
|
+
* Insecure node command to execute in a imported k8s cluster (string)
|
|
674
|
+
*/
|
|
639
675
|
insecureNodeCommand: string;
|
|
676
|
+
/**
|
|
677
|
+
* Insecure windows command to execute in a imported k8s cluster (string)
|
|
678
|
+
*/
|
|
640
679
|
insecureWindowsNodeCommand: string;
|
|
641
680
|
/**
|
|
642
681
|
* Labels for the Cluster (map)
|
|
@@ -644,13 +683,22 @@ export interface ClusterClusterRegistrationToken {
|
|
|
644
683
|
labels: {
|
|
645
684
|
[key: string]: any;
|
|
646
685
|
};
|
|
686
|
+
/**
|
|
687
|
+
* K8s manifest url to execute with `kubectl` to import an existing k8s cluster (string)
|
|
688
|
+
*/
|
|
647
689
|
manifestUrl: string;
|
|
648
690
|
/**
|
|
649
691
|
* The name of the Cluster (string)
|
|
650
692
|
*/
|
|
651
693
|
name: string;
|
|
694
|
+
/**
|
|
695
|
+
* Node command to execute in linux nodes for custom k8s cluster (string)
|
|
696
|
+
*/
|
|
652
697
|
nodeCommand: string;
|
|
653
698
|
token: string;
|
|
699
|
+
/**
|
|
700
|
+
* Node command to execute in windows nodes for custom k8s cluster (string)
|
|
701
|
+
*/
|
|
654
702
|
windowsNodeCommand: string;
|
|
655
703
|
}
|
|
656
704
|
export interface ClusterClusterTemplateAnswers {
|
|
@@ -946,10 +994,25 @@ export interface ClusterFleetAgentDeploymentCustomization {
|
|
|
946
994
|
overrideResourceRequirements?: outputs.ClusterFleetAgentDeploymentCustomizationOverrideResourceRequirement[];
|
|
947
995
|
}
|
|
948
996
|
export interface ClusterFleetAgentDeploymentCustomizationAppendToleration {
|
|
997
|
+
/**
|
|
998
|
+
* The GKE taint effect (string)
|
|
999
|
+
*/
|
|
949
1000
|
effect?: string;
|
|
1001
|
+
/**
|
|
1002
|
+
* The GKE taint key (string)
|
|
1003
|
+
*/
|
|
950
1004
|
key: string;
|
|
1005
|
+
/**
|
|
1006
|
+
* The toleration operator. `Equal`, and `Exists` are supported. Default: `Equal` (string)
|
|
1007
|
+
*/
|
|
951
1008
|
operator?: string;
|
|
1009
|
+
/**
|
|
1010
|
+
* The toleration seconds (int)
|
|
1011
|
+
*/
|
|
952
1012
|
seconds: number;
|
|
1013
|
+
/**
|
|
1014
|
+
* The GKE taint value (string)
|
|
1015
|
+
*/
|
|
953
1016
|
value?: string;
|
|
954
1017
|
}
|
|
955
1018
|
export interface ClusterFleetAgentDeploymentCustomizationOverrideResourceRequirement {
|
|
@@ -1441,8 +1504,17 @@ export interface ClusterGkeConfigV2NodePoolConfig {
|
|
|
1441
1504
|
taints?: outputs.ClusterGkeConfigV2NodePoolConfigTaint[];
|
|
1442
1505
|
}
|
|
1443
1506
|
export interface ClusterGkeConfigV2NodePoolConfigTaint {
|
|
1507
|
+
/**
|
|
1508
|
+
* The GKE taint effect (string)
|
|
1509
|
+
*/
|
|
1444
1510
|
effect: string;
|
|
1511
|
+
/**
|
|
1512
|
+
* The GKE taint key (string)
|
|
1513
|
+
*/
|
|
1445
1514
|
key: string;
|
|
1515
|
+
/**
|
|
1516
|
+
* The GKE taint value (string)
|
|
1517
|
+
*/
|
|
1446
1518
|
value: string;
|
|
1447
1519
|
}
|
|
1448
1520
|
export interface ClusterGkeConfigV2NodePoolManagement {
|
|
@@ -1680,7 +1752,13 @@ export interface ClusterRkeConfig {
|
|
|
1680
1752
|
* RKE bastion host
|
|
1681
1753
|
*/
|
|
1682
1754
|
bastionHost: outputs.ClusterRkeConfigBastionHost;
|
|
1755
|
+
/**
|
|
1756
|
+
* RKE options for Calico network provider (string)
|
|
1757
|
+
*/
|
|
1683
1758
|
cloudProvider: outputs.ClusterRkeConfigCloudProvider;
|
|
1759
|
+
/**
|
|
1760
|
+
* RKE dns add-on. For Rancher v2.2.x (list maxitems:1)
|
|
1761
|
+
*/
|
|
1684
1762
|
dns: outputs.ClusterRkeConfigDns;
|
|
1685
1763
|
/**
|
|
1686
1764
|
* Enable/disable using cri-dockerd
|
|
@@ -1744,174 +1822,522 @@ export interface ClusterRkeConfig {
|
|
|
1744
1822
|
winPrefixPath: string;
|
|
1745
1823
|
}
|
|
1746
1824
|
export interface ClusterRkeConfigAuthentication {
|
|
1825
|
+
/**
|
|
1826
|
+
* RKE sans for authentication ([]string)
|
|
1827
|
+
*/
|
|
1747
1828
|
sans: string[];
|
|
1829
|
+
/**
|
|
1830
|
+
* Monitoring deployment update strategy (string)
|
|
1831
|
+
*/
|
|
1748
1832
|
strategy: string;
|
|
1749
1833
|
}
|
|
1750
1834
|
export interface ClusterRkeConfigAuthorization {
|
|
1835
|
+
/**
|
|
1836
|
+
* The AKS node group mode. Default: `System` (string)
|
|
1837
|
+
*/
|
|
1751
1838
|
mode?: string;
|
|
1839
|
+
/**
|
|
1840
|
+
* RKE options for network (map)
|
|
1841
|
+
*/
|
|
1752
1842
|
options: {
|
|
1753
1843
|
[key: string]: any;
|
|
1754
1844
|
};
|
|
1755
1845
|
}
|
|
1756
1846
|
export interface ClusterRkeConfigBastionHost {
|
|
1847
|
+
/**
|
|
1848
|
+
* Address ip for node (string)
|
|
1849
|
+
*/
|
|
1757
1850
|
address: string;
|
|
1851
|
+
/**
|
|
1852
|
+
* Port for node. Default `22` (string)
|
|
1853
|
+
*/
|
|
1758
1854
|
port?: string;
|
|
1855
|
+
/**
|
|
1856
|
+
* Use ssh agent auth. Default `false` (bool)
|
|
1857
|
+
*/
|
|
1759
1858
|
sshAgentAuth?: boolean;
|
|
1859
|
+
/**
|
|
1860
|
+
* Node SSH private key (string)
|
|
1861
|
+
*/
|
|
1760
1862
|
sshKey: string;
|
|
1863
|
+
/**
|
|
1864
|
+
* Node SSH private key path (string)
|
|
1865
|
+
*/
|
|
1761
1866
|
sshKeyPath: string;
|
|
1867
|
+
/**
|
|
1868
|
+
* Registry user (string)
|
|
1869
|
+
*/
|
|
1762
1870
|
user: string;
|
|
1763
1871
|
}
|
|
1764
1872
|
export interface ClusterRkeConfigCloudProvider {
|
|
1873
|
+
/**
|
|
1874
|
+
* RKE AWS Cloud Provider config for Cloud Provider [rke-aws-cloud-provider](https://rancher.com/docs/rke/latest/en/config-options/cloud-providers/aws/) (list maxitems:1)
|
|
1875
|
+
*/
|
|
1765
1876
|
awsCloudProvider?: outputs.ClusterRkeConfigCloudProviderAwsCloudProvider;
|
|
1877
|
+
/**
|
|
1878
|
+
* RKE Azure Cloud Provider config for Cloud Provider [rke-azure-cloud-provider](https://rancher.com/docs/rke/latest/en/config-options/cloud-providers/azure/) (list maxitems:1)
|
|
1879
|
+
*/
|
|
1766
1880
|
azureCloudProvider?: outputs.ClusterRkeConfigCloudProviderAzureCloudProvider;
|
|
1881
|
+
/**
|
|
1882
|
+
* RKE Custom Cloud Provider config for Cloud Provider (string)
|
|
1883
|
+
*/
|
|
1767
1884
|
customCloudProvider: string;
|
|
1768
1885
|
/**
|
|
1769
1886
|
* The name of the Cluster (string)
|
|
1770
1887
|
*/
|
|
1771
1888
|
name?: string;
|
|
1889
|
+
/**
|
|
1890
|
+
* RKE Openstack Cloud Provider config for Cloud Provider [rke-openstack-cloud-provider](https://rancher.com/docs/rke/latest/en/config-options/cloud-providers/openstack/) (list maxitems:1)
|
|
1891
|
+
*/
|
|
1772
1892
|
openstackCloudProvider?: outputs.ClusterRkeConfigCloudProviderOpenstackCloudProvider;
|
|
1893
|
+
/**
|
|
1894
|
+
* RKE Vsphere Cloud Provider config for Cloud Provider [rke-vsphere-cloud-provider](https://rancher.com/docs/rke/latest/en/config-options/cloud-providers/vsphere/) Extra argument `name` is required on `virtualCenter` configuration. (list maxitems:1)
|
|
1895
|
+
*/
|
|
1773
1896
|
vsphereCloudProvider?: outputs.ClusterRkeConfigCloudProviderVsphereCloudProvider;
|
|
1774
1897
|
}
|
|
1775
1898
|
export interface ClusterRkeConfigCloudProviderAwsCloudProvider {
|
|
1899
|
+
/**
|
|
1900
|
+
* (list maxitems:1)
|
|
1901
|
+
*/
|
|
1776
1902
|
global: outputs.ClusterRkeConfigCloudProviderAwsCloudProviderGlobal;
|
|
1903
|
+
/**
|
|
1904
|
+
* (list)
|
|
1905
|
+
*/
|
|
1777
1906
|
serviceOverrides?: outputs.ClusterRkeConfigCloudProviderAwsCloudProviderServiceOverride[];
|
|
1778
1907
|
}
|
|
1779
1908
|
export interface ClusterRkeConfigCloudProviderAwsCloudProviderGlobal {
|
|
1909
|
+
/**
|
|
1910
|
+
* Default `false` (bool)
|
|
1911
|
+
*/
|
|
1780
1912
|
disableSecurityGroupIngress?: boolean;
|
|
1913
|
+
/**
|
|
1914
|
+
* Default `false` (bool)
|
|
1915
|
+
*/
|
|
1781
1916
|
disableStrictZoneCheck?: boolean;
|
|
1917
|
+
/**
|
|
1918
|
+
* (string)
|
|
1919
|
+
*/
|
|
1782
1920
|
elbSecurityGroup: string;
|
|
1921
|
+
/**
|
|
1922
|
+
* (string)
|
|
1923
|
+
*/
|
|
1783
1924
|
kubernetesClusterId: string;
|
|
1925
|
+
/**
|
|
1926
|
+
* (string)
|
|
1927
|
+
*/
|
|
1784
1928
|
kubernetesClusterTag: string;
|
|
1929
|
+
/**
|
|
1930
|
+
* (string)
|
|
1931
|
+
*/
|
|
1785
1932
|
roleArn: string;
|
|
1933
|
+
/**
|
|
1934
|
+
* (string)
|
|
1935
|
+
*/
|
|
1786
1936
|
routeTableId: string;
|
|
1937
|
+
/**
|
|
1938
|
+
* (string)
|
|
1939
|
+
*/
|
|
1787
1940
|
subnetId: string;
|
|
1941
|
+
/**
|
|
1942
|
+
* (string)
|
|
1943
|
+
*/
|
|
1788
1944
|
vpc: string;
|
|
1945
|
+
/**
|
|
1946
|
+
* The GKE cluster zone. Required if `region` not set (string)
|
|
1947
|
+
*/
|
|
1789
1948
|
zone: string;
|
|
1790
1949
|
}
|
|
1791
1950
|
export interface ClusterRkeConfigCloudProviderAwsCloudProviderServiceOverride {
|
|
1951
|
+
/**
|
|
1952
|
+
* The availability domain within the region to host the cluster. See [here](https://docs.cloud.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm) for a list of region names. (string)
|
|
1953
|
+
*/
|
|
1792
1954
|
region: string;
|
|
1955
|
+
/**
|
|
1956
|
+
* (string)
|
|
1957
|
+
*/
|
|
1793
1958
|
service: string;
|
|
1959
|
+
/**
|
|
1960
|
+
* (string)
|
|
1961
|
+
*/
|
|
1794
1962
|
signingMethod: string;
|
|
1963
|
+
/**
|
|
1964
|
+
* (string)
|
|
1965
|
+
*/
|
|
1795
1966
|
signingName: string;
|
|
1967
|
+
/**
|
|
1968
|
+
* (string)
|
|
1969
|
+
*/
|
|
1796
1970
|
signingRegion: string;
|
|
1971
|
+
/**
|
|
1972
|
+
* Registry URL (string)
|
|
1973
|
+
*/
|
|
1797
1974
|
url: string;
|
|
1798
1975
|
}
|
|
1799
1976
|
export interface ClusterRkeConfigCloudProviderAzureCloudProvider {
|
|
1977
|
+
/**
|
|
1978
|
+
* (string)
|
|
1979
|
+
*/
|
|
1800
1980
|
aadClientCertPassword: string;
|
|
1981
|
+
/**
|
|
1982
|
+
* (string)
|
|
1983
|
+
*/
|
|
1801
1984
|
aadClientCertPath: string;
|
|
1985
|
+
/**
|
|
1986
|
+
* (string)
|
|
1987
|
+
*/
|
|
1802
1988
|
aadClientId: string;
|
|
1989
|
+
/**
|
|
1990
|
+
* (string)
|
|
1991
|
+
*/
|
|
1803
1992
|
aadClientSecret: string;
|
|
1993
|
+
/**
|
|
1994
|
+
* (string)
|
|
1995
|
+
*/
|
|
1804
1996
|
cloud: string;
|
|
1997
|
+
/**
|
|
1998
|
+
* (bool)
|
|
1999
|
+
*/
|
|
1805
2000
|
cloudProviderBackoff: boolean;
|
|
2001
|
+
/**
|
|
2002
|
+
* (int)
|
|
2003
|
+
*/
|
|
1806
2004
|
cloudProviderBackoffDuration: number;
|
|
2005
|
+
/**
|
|
2006
|
+
* (int)
|
|
2007
|
+
*/
|
|
1807
2008
|
cloudProviderBackoffExponent: number;
|
|
2009
|
+
/**
|
|
2010
|
+
* (int)
|
|
2011
|
+
*/
|
|
1808
2012
|
cloudProviderBackoffJitter: number;
|
|
2013
|
+
/**
|
|
2014
|
+
* (int)
|
|
2015
|
+
*/
|
|
1809
2016
|
cloudProviderBackoffRetries: number;
|
|
2017
|
+
/**
|
|
2018
|
+
* (bool)
|
|
2019
|
+
*/
|
|
1810
2020
|
cloudProviderRateLimit: boolean;
|
|
2021
|
+
/**
|
|
2022
|
+
* (int)
|
|
2023
|
+
*/
|
|
1811
2024
|
cloudProviderRateLimitBucket: number;
|
|
2025
|
+
/**
|
|
2026
|
+
* (int)
|
|
2027
|
+
*/
|
|
1812
2028
|
cloudProviderRateLimitQps: number;
|
|
1813
2029
|
/**
|
|
1814
2030
|
* Load balancer type (basic | standard). Must be standard for auto-scaling
|
|
1815
2031
|
*/
|
|
1816
2032
|
loadBalancerSku?: string;
|
|
2033
|
+
/**
|
|
2034
|
+
* Azure Kubernetes cluster location. Default `eastus` (string)
|
|
2035
|
+
*/
|
|
1817
2036
|
location: string;
|
|
2037
|
+
/**
|
|
2038
|
+
* (int)
|
|
2039
|
+
*/
|
|
1818
2040
|
maximumLoadBalancerRuleCount: number;
|
|
2041
|
+
/**
|
|
2042
|
+
* (string)
|
|
2043
|
+
*/
|
|
1819
2044
|
primaryAvailabilitySetName: string;
|
|
2045
|
+
/**
|
|
2046
|
+
* (string)
|
|
2047
|
+
*/
|
|
1820
2048
|
primaryScaleSetName: string;
|
|
2049
|
+
/**
|
|
2050
|
+
* The AKS resource group (string)
|
|
2051
|
+
*/
|
|
1821
2052
|
resourceGroup: string;
|
|
2053
|
+
/**
|
|
2054
|
+
* (string)
|
|
2055
|
+
*/
|
|
1822
2056
|
routeTableName: string;
|
|
2057
|
+
/**
|
|
2058
|
+
* (string)
|
|
2059
|
+
*/
|
|
1823
2060
|
securityGroupName: string;
|
|
2061
|
+
/**
|
|
2062
|
+
* (string)
|
|
2063
|
+
*/
|
|
1824
2064
|
subnetName: string;
|
|
2065
|
+
/**
|
|
2066
|
+
* Subscription credentials which uniquely identify Microsoft Azure subscription (string)
|
|
2067
|
+
*/
|
|
1825
2068
|
subscriptionId: string;
|
|
2069
|
+
/**
|
|
2070
|
+
* Azure tenant ID to use (string)
|
|
2071
|
+
*/
|
|
1826
2072
|
tenantId: string;
|
|
2073
|
+
/**
|
|
2074
|
+
* (bool)
|
|
2075
|
+
*/
|
|
1827
2076
|
useInstanceMetadata: boolean;
|
|
2077
|
+
/**
|
|
2078
|
+
* (bool)
|
|
2079
|
+
*/
|
|
1828
2080
|
useManagedIdentityExtension: boolean;
|
|
2081
|
+
/**
|
|
2082
|
+
* (string)
|
|
2083
|
+
*/
|
|
1829
2084
|
vmType: string;
|
|
2085
|
+
/**
|
|
2086
|
+
* (string)
|
|
2087
|
+
*/
|
|
1830
2088
|
vnetName: string;
|
|
2089
|
+
/**
|
|
2090
|
+
* (string)
|
|
2091
|
+
*/
|
|
1831
2092
|
vnetResourceGroup: string;
|
|
1832
2093
|
}
|
|
1833
2094
|
export interface ClusterRkeConfigCloudProviderOpenstackCloudProvider {
|
|
2095
|
+
/**
|
|
2096
|
+
* (list maxitems:1)
|
|
2097
|
+
*/
|
|
1834
2098
|
blockStorage: outputs.ClusterRkeConfigCloudProviderOpenstackCloudProviderBlockStorage;
|
|
2099
|
+
/**
|
|
2100
|
+
* (list maxitems:1)
|
|
2101
|
+
*/
|
|
1835
2102
|
global: outputs.ClusterRkeConfigCloudProviderOpenstackCloudProviderGlobal;
|
|
2103
|
+
/**
|
|
2104
|
+
* (list maxitems:1)
|
|
2105
|
+
*/
|
|
1836
2106
|
loadBalancer: outputs.ClusterRkeConfigCloudProviderOpenstackCloudProviderLoadBalancer;
|
|
2107
|
+
/**
|
|
2108
|
+
* (list maxitems:1)
|
|
2109
|
+
*/
|
|
1837
2110
|
metadata: outputs.ClusterRkeConfigCloudProviderOpenstackCloudProviderMetadata;
|
|
2111
|
+
/**
|
|
2112
|
+
* (list maxitems:1)
|
|
2113
|
+
*/
|
|
1838
2114
|
route: outputs.ClusterRkeConfigCloudProviderOpenstackCloudProviderRoute;
|
|
1839
2115
|
}
|
|
1840
2116
|
export interface ClusterRkeConfigCloudProviderOpenstackCloudProviderBlockStorage {
|
|
2117
|
+
/**
|
|
2118
|
+
* (string)
|
|
2119
|
+
*/
|
|
1841
2120
|
bsVersion: string;
|
|
2121
|
+
/**
|
|
2122
|
+
* (string)
|
|
2123
|
+
*/
|
|
1842
2124
|
ignoreVolumeAz: boolean;
|
|
2125
|
+
/**
|
|
2126
|
+
* (string)
|
|
2127
|
+
*/
|
|
1843
2128
|
trustDevicePath: boolean;
|
|
1844
2129
|
}
|
|
1845
2130
|
export interface ClusterRkeConfigCloudProviderOpenstackCloudProviderGlobal {
|
|
2131
|
+
/**
|
|
2132
|
+
* (string)
|
|
2133
|
+
*/
|
|
1846
2134
|
authUrl: string;
|
|
2135
|
+
/**
|
|
2136
|
+
* (string)
|
|
2137
|
+
*/
|
|
1847
2138
|
caFile: string;
|
|
2139
|
+
/**
|
|
2140
|
+
* Required if `domainName` not provided. (string)
|
|
2141
|
+
*/
|
|
1848
2142
|
domainId: string;
|
|
2143
|
+
/**
|
|
2144
|
+
* Required if `domainId` not provided. (string)
|
|
2145
|
+
*/
|
|
1849
2146
|
domainName: string;
|
|
2147
|
+
/**
|
|
2148
|
+
* Registry password (string)
|
|
2149
|
+
*/
|
|
1850
2150
|
password: string;
|
|
2151
|
+
/**
|
|
2152
|
+
* The availability domain within the region to host the cluster. See [here](https://docs.cloud.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm) for a list of region names. (string)
|
|
2153
|
+
*/
|
|
1851
2154
|
region: string;
|
|
2155
|
+
/**
|
|
2156
|
+
* Azure tenant ID to use (string)
|
|
2157
|
+
*/
|
|
1852
2158
|
tenantId: string;
|
|
2159
|
+
/**
|
|
2160
|
+
* Required if `tenantId` not provided. (string)
|
|
2161
|
+
*/
|
|
1853
2162
|
tenantName: string;
|
|
2163
|
+
/**
|
|
2164
|
+
* (string)
|
|
2165
|
+
*/
|
|
1854
2166
|
trustId: string;
|
|
2167
|
+
/**
|
|
2168
|
+
* (string)
|
|
2169
|
+
*/
|
|
1855
2170
|
username: string;
|
|
1856
2171
|
}
|
|
1857
2172
|
export interface ClusterRkeConfigCloudProviderOpenstackCloudProviderLoadBalancer {
|
|
2173
|
+
/**
|
|
2174
|
+
* (bool)
|
|
2175
|
+
*/
|
|
1858
2176
|
createMonitor: boolean;
|
|
2177
|
+
/**
|
|
2178
|
+
* (string)
|
|
2179
|
+
*/
|
|
1859
2180
|
floatingNetworkId: string;
|
|
2181
|
+
/**
|
|
2182
|
+
* (string)
|
|
2183
|
+
*/
|
|
1860
2184
|
lbMethod: string;
|
|
2185
|
+
/**
|
|
2186
|
+
* (string)
|
|
2187
|
+
*/
|
|
1861
2188
|
lbProvider: string;
|
|
2189
|
+
/**
|
|
2190
|
+
* (string)
|
|
2191
|
+
*/
|
|
1862
2192
|
lbVersion: string;
|
|
2193
|
+
/**
|
|
2194
|
+
* (bool)
|
|
2195
|
+
*/
|
|
1863
2196
|
manageSecurityGroups: boolean;
|
|
2197
|
+
/**
|
|
2198
|
+
* Default `60s` (string)
|
|
2199
|
+
*/
|
|
1864
2200
|
monitorDelay?: string;
|
|
2201
|
+
/**
|
|
2202
|
+
* Default 5 (int)
|
|
2203
|
+
*/
|
|
1865
2204
|
monitorMaxRetries?: number;
|
|
2205
|
+
/**
|
|
2206
|
+
* Default `30s` (string)
|
|
2207
|
+
*/
|
|
1866
2208
|
monitorTimeout?: string;
|
|
2209
|
+
/**
|
|
2210
|
+
* (string)
|
|
2211
|
+
*/
|
|
1867
2212
|
subnetId: string;
|
|
2213
|
+
/**
|
|
2214
|
+
* (bool)
|
|
2215
|
+
*/
|
|
1868
2216
|
useOctavia: boolean;
|
|
1869
2217
|
}
|
|
1870
2218
|
export interface ClusterRkeConfigCloudProviderOpenstackCloudProviderMetadata {
|
|
2219
|
+
/**
|
|
2220
|
+
* (int)
|
|
2221
|
+
*/
|
|
1871
2222
|
requestTimeout: number;
|
|
2223
|
+
/**
|
|
2224
|
+
* (string)
|
|
2225
|
+
*/
|
|
1872
2226
|
searchOrder: string;
|
|
1873
2227
|
}
|
|
1874
2228
|
export interface ClusterRkeConfigCloudProviderOpenstackCloudProviderRoute {
|
|
2229
|
+
/**
|
|
2230
|
+
* (string)
|
|
2231
|
+
*/
|
|
1875
2232
|
routerId: string;
|
|
1876
2233
|
}
|
|
1877
2234
|
export interface ClusterRkeConfigCloudProviderVsphereCloudProvider {
|
|
2235
|
+
/**
|
|
2236
|
+
* (list maxitems:1)
|
|
2237
|
+
*/
|
|
1878
2238
|
disk: outputs.ClusterRkeConfigCloudProviderVsphereCloudProviderDisk;
|
|
2239
|
+
/**
|
|
2240
|
+
* (list maxitems:1)
|
|
2241
|
+
*/
|
|
1879
2242
|
global: outputs.ClusterRkeConfigCloudProviderVsphereCloudProviderGlobal;
|
|
2243
|
+
/**
|
|
2244
|
+
* The GKE cluster network. Required for create new cluster (string)
|
|
2245
|
+
*/
|
|
1880
2246
|
network: outputs.ClusterRkeConfigCloudProviderVsphereCloudProviderNetwork;
|
|
2247
|
+
/**
|
|
2248
|
+
* (List)
|
|
2249
|
+
*/
|
|
1881
2250
|
virtualCenters: outputs.ClusterRkeConfigCloudProviderVsphereCloudProviderVirtualCenter[];
|
|
2251
|
+
/**
|
|
2252
|
+
* (list maxitems:1)
|
|
2253
|
+
*/
|
|
1882
2254
|
workspace: outputs.ClusterRkeConfigCloudProviderVsphereCloudProviderWorkspace;
|
|
1883
2255
|
}
|
|
1884
2256
|
export interface ClusterRkeConfigCloudProviderVsphereCloudProviderDisk {
|
|
2257
|
+
/**
|
|
2258
|
+
* (string)
|
|
2259
|
+
*/
|
|
1885
2260
|
scsiControllerType: string;
|
|
1886
2261
|
}
|
|
1887
2262
|
export interface ClusterRkeConfigCloudProviderVsphereCloudProviderGlobal {
|
|
2263
|
+
/**
|
|
2264
|
+
* (string)
|
|
2265
|
+
*/
|
|
1888
2266
|
datacenters: string;
|
|
1889
2267
|
gracefulShutdownTimeout?: string;
|
|
2268
|
+
/**
|
|
2269
|
+
* (bool)
|
|
2270
|
+
*/
|
|
1890
2271
|
insecureFlag: boolean;
|
|
2272
|
+
/**
|
|
2273
|
+
* Registry password (string)
|
|
2274
|
+
*/
|
|
1891
2275
|
password: string;
|
|
2276
|
+
/**
|
|
2277
|
+
* Port for node. Default `22` (string)
|
|
2278
|
+
*/
|
|
1892
2279
|
port: string;
|
|
2280
|
+
/**
|
|
2281
|
+
* (int)
|
|
2282
|
+
*/
|
|
1893
2283
|
soapRoundtripCount: number;
|
|
2284
|
+
/**
|
|
2285
|
+
* Registry user (string)
|
|
2286
|
+
*/
|
|
1894
2287
|
user: string;
|
|
1895
2288
|
}
|
|
1896
2289
|
export interface ClusterRkeConfigCloudProviderVsphereCloudProviderNetwork {
|
|
2290
|
+
/**
|
|
2291
|
+
* (string)
|
|
2292
|
+
*/
|
|
1897
2293
|
publicNetwork: string;
|
|
1898
2294
|
}
|
|
1899
2295
|
export interface ClusterRkeConfigCloudProviderVsphereCloudProviderVirtualCenter {
|
|
2296
|
+
/**
|
|
2297
|
+
* (string)
|
|
2298
|
+
*/
|
|
1900
2299
|
datacenters: string;
|
|
1901
2300
|
/**
|
|
1902
2301
|
* The name of the Cluster (string)
|
|
1903
2302
|
*/
|
|
1904
2303
|
name: string;
|
|
2304
|
+
/**
|
|
2305
|
+
* Registry password (string)
|
|
2306
|
+
*/
|
|
1905
2307
|
password: string;
|
|
2308
|
+
/**
|
|
2309
|
+
* Port for node. Default `22` (string)
|
|
2310
|
+
*/
|
|
1906
2311
|
port: string;
|
|
2312
|
+
/**
|
|
2313
|
+
* (int)
|
|
2314
|
+
*/
|
|
1907
2315
|
soapRoundtripCount: number;
|
|
2316
|
+
/**
|
|
2317
|
+
* Registry user (string)
|
|
2318
|
+
*/
|
|
1908
2319
|
user: string;
|
|
1909
2320
|
}
|
|
1910
2321
|
export interface ClusterRkeConfigCloudProviderVsphereCloudProviderWorkspace {
|
|
2322
|
+
/**
|
|
2323
|
+
* (string)
|
|
2324
|
+
*/
|
|
1911
2325
|
datacenter: string;
|
|
2326
|
+
/**
|
|
2327
|
+
* (string)
|
|
2328
|
+
*/
|
|
1912
2329
|
defaultDatastore: string;
|
|
2330
|
+
/**
|
|
2331
|
+
* Folder for S3 service. Available from Rancher v2.2.7 (string)
|
|
2332
|
+
*/
|
|
1913
2333
|
folder: string;
|
|
2334
|
+
/**
|
|
2335
|
+
* (string)
|
|
2336
|
+
*/
|
|
1914
2337
|
resourcepoolPath: string;
|
|
2338
|
+
/**
|
|
2339
|
+
* (string)
|
|
2340
|
+
*/
|
|
1915
2341
|
server: string;
|
|
1916
2342
|
}
|
|
1917
2343
|
export interface ClusterRkeConfigDns {
|
|
@@ -1919,6 +2345,9 @@ export interface ClusterRkeConfigDns {
|
|
|
1919
2345
|
* Linear Autoscaler Params
|
|
1920
2346
|
*/
|
|
1921
2347
|
linearAutoscalerParams?: outputs.ClusterRkeConfigDnsLinearAutoscalerParams;
|
|
2348
|
+
/**
|
|
2349
|
+
* RKE monitoring node selector (map)
|
|
2350
|
+
*/
|
|
1922
2351
|
nodeSelector: {
|
|
1923
2352
|
[key: string]: any;
|
|
1924
2353
|
};
|
|
@@ -1926,10 +2355,19 @@ export interface ClusterRkeConfigDns {
|
|
|
1926
2355
|
* Nodelocal dns
|
|
1927
2356
|
*/
|
|
1928
2357
|
nodelocal?: outputs.ClusterRkeConfigDnsNodelocal;
|
|
2358
|
+
/**
|
|
2359
|
+
* RKE options for network (map)
|
|
2360
|
+
*/
|
|
1929
2361
|
options: {
|
|
1930
2362
|
[key: string]: any;
|
|
1931
2363
|
};
|
|
2364
|
+
/**
|
|
2365
|
+
* RKE monitoring provider (string)
|
|
2366
|
+
*/
|
|
1932
2367
|
provider?: string;
|
|
2368
|
+
/**
|
|
2369
|
+
* DNS add-on reverse cidr (list)
|
|
2370
|
+
*/
|
|
1933
2371
|
reverseCidrs: string[];
|
|
1934
2372
|
/**
|
|
1935
2373
|
* DNS service tolerations
|
|
@@ -1939,16 +2377,37 @@ export interface ClusterRkeConfigDns {
|
|
|
1939
2377
|
* Update deployment strategy
|
|
1940
2378
|
*/
|
|
1941
2379
|
updateStrategy?: outputs.ClusterRkeConfigDnsUpdateStrategy;
|
|
2380
|
+
/**
|
|
2381
|
+
* DNS add-on upstream nameservers (list)
|
|
2382
|
+
*/
|
|
1942
2383
|
upstreamNameservers: string[];
|
|
1943
2384
|
}
|
|
1944
2385
|
export interface ClusterRkeConfigDnsLinearAutoscalerParams {
|
|
2386
|
+
/**
|
|
2387
|
+
* number of replicas per cluster cores (float64)
|
|
2388
|
+
*/
|
|
1945
2389
|
coresPerReplica?: number;
|
|
2390
|
+
/**
|
|
2391
|
+
* maximum number of replicas (int64)
|
|
2392
|
+
*/
|
|
1946
2393
|
max?: number;
|
|
2394
|
+
/**
|
|
2395
|
+
* minimum number of replicas (int64)
|
|
2396
|
+
*/
|
|
1947
2397
|
min?: number;
|
|
2398
|
+
/**
|
|
2399
|
+
* number of replica per cluster nodes (float64)
|
|
2400
|
+
*/
|
|
1948
2401
|
nodesPerReplica?: number;
|
|
2402
|
+
/**
|
|
2403
|
+
* prevent single point of failure
|
|
2404
|
+
*/
|
|
1949
2405
|
preventSinglePointFailure?: boolean;
|
|
1950
2406
|
}
|
|
1951
2407
|
export interface ClusterRkeConfigDnsNodelocal {
|
|
2408
|
+
/**
|
|
2409
|
+
* Nodelocal dns ip address (string)
|
|
2410
|
+
*/
|
|
1952
2411
|
ipAddress?: string;
|
|
1953
2412
|
/**
|
|
1954
2413
|
* Node selector key pair
|
|
@@ -1958,10 +2417,25 @@ export interface ClusterRkeConfigDnsNodelocal {
|
|
|
1958
2417
|
};
|
|
1959
2418
|
}
|
|
1960
2419
|
export interface ClusterRkeConfigDnsToleration {
|
|
2420
|
+
/**
|
|
2421
|
+
* The GKE taint effect (string)
|
|
2422
|
+
*/
|
|
1961
2423
|
effect?: string;
|
|
2424
|
+
/**
|
|
2425
|
+
* The GKE taint key (string)
|
|
2426
|
+
*/
|
|
1962
2427
|
key: string;
|
|
2428
|
+
/**
|
|
2429
|
+
* The toleration operator. `Equal`, and `Exists` are supported. Default: `Equal` (string)
|
|
2430
|
+
*/
|
|
1963
2431
|
operator?: string;
|
|
2432
|
+
/**
|
|
2433
|
+
* The toleration seconds (int)
|
|
2434
|
+
*/
|
|
1964
2435
|
seconds: number;
|
|
2436
|
+
/**
|
|
2437
|
+
* The GKE taint value (string)
|
|
2438
|
+
*/
|
|
1965
2439
|
value?: string;
|
|
1966
2440
|
}
|
|
1967
2441
|
export interface ClusterRkeConfigDnsUpdateStrategy {
|
|
@@ -1985,20 +2459,47 @@ export interface ClusterRkeConfigDnsUpdateStrategyRollingUpdate {
|
|
|
1985
2459
|
maxUnavailable?: number;
|
|
1986
2460
|
}
|
|
1987
2461
|
export interface ClusterRkeConfigIngress {
|
|
2462
|
+
/**
|
|
2463
|
+
* Enable ingress default backend. Default: `true` (bool)
|
|
2464
|
+
*/
|
|
1988
2465
|
defaultBackend?: boolean;
|
|
2466
|
+
/**
|
|
2467
|
+
* Ingress controller DNS policy. `ClusterFirstWithHostNet`, `ClusterFirst`, `Default`, and `None` are supported. [K8S dns Policy](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy) (string)
|
|
2468
|
+
*/
|
|
1989
2469
|
dnsPolicy: string;
|
|
2470
|
+
/**
|
|
2471
|
+
* Extra arguments for scheduler service (map)
|
|
2472
|
+
*/
|
|
1990
2473
|
extraArgs: {
|
|
1991
2474
|
[key: string]: any;
|
|
1992
2475
|
};
|
|
2476
|
+
/**
|
|
2477
|
+
* HTTP port for RKE Ingress (int)
|
|
2478
|
+
*/
|
|
1993
2479
|
httpPort: number;
|
|
2480
|
+
/**
|
|
2481
|
+
* HTTPS port for RKE Ingress (int)
|
|
2482
|
+
*/
|
|
1994
2483
|
httpsPort: number;
|
|
2484
|
+
/**
|
|
2485
|
+
* Network mode for RKE Ingress (string)
|
|
2486
|
+
*/
|
|
1995
2487
|
networkMode: string;
|
|
2488
|
+
/**
|
|
2489
|
+
* RKE monitoring node selector (map)
|
|
2490
|
+
*/
|
|
1996
2491
|
nodeSelector: {
|
|
1997
2492
|
[key: string]: any;
|
|
1998
2493
|
};
|
|
2494
|
+
/**
|
|
2495
|
+
* RKE options for network (map)
|
|
2496
|
+
*/
|
|
1999
2497
|
options: {
|
|
2000
2498
|
[key: string]: any;
|
|
2001
2499
|
};
|
|
2500
|
+
/**
|
|
2501
|
+
* RKE monitoring provider (string)
|
|
2502
|
+
*/
|
|
2002
2503
|
provider: string;
|
|
2003
2504
|
/**
|
|
2004
2505
|
* Ingress add-on tolerations
|
|
@@ -2010,10 +2511,25 @@ export interface ClusterRkeConfigIngress {
|
|
|
2010
2511
|
updateStrategy?: outputs.ClusterRkeConfigIngressUpdateStrategy;
|
|
2011
2512
|
}
|
|
2012
2513
|
export interface ClusterRkeConfigIngressToleration {
|
|
2514
|
+
/**
|
|
2515
|
+
* The GKE taint effect (string)
|
|
2516
|
+
*/
|
|
2013
2517
|
effect?: string;
|
|
2518
|
+
/**
|
|
2519
|
+
* The GKE taint key (string)
|
|
2520
|
+
*/
|
|
2014
2521
|
key: string;
|
|
2522
|
+
/**
|
|
2523
|
+
* The toleration operator. `Equal`, and `Exists` are supported. Default: `Equal` (string)
|
|
2524
|
+
*/
|
|
2015
2525
|
operator?: string;
|
|
2526
|
+
/**
|
|
2527
|
+
* The toleration seconds (int)
|
|
2528
|
+
*/
|
|
2016
2529
|
seconds: number;
|
|
2530
|
+
/**
|
|
2531
|
+
* The GKE taint value (string)
|
|
2532
|
+
*/
|
|
2017
2533
|
value?: string;
|
|
2018
2534
|
}
|
|
2019
2535
|
export interface ClusterRkeConfigIngressUpdateStrategy {
|
|
@@ -2033,13 +2549,25 @@ export interface ClusterRkeConfigIngressUpdateStrategyRollingUpdate {
|
|
|
2033
2549
|
maxUnavailable?: number;
|
|
2034
2550
|
}
|
|
2035
2551
|
export interface ClusterRkeConfigMonitoring {
|
|
2552
|
+
/**
|
|
2553
|
+
* RKE monitoring node selector (map)
|
|
2554
|
+
*/
|
|
2036
2555
|
nodeSelector?: {
|
|
2037
2556
|
[key: string]: any;
|
|
2038
2557
|
};
|
|
2558
|
+
/**
|
|
2559
|
+
* RKE options for network (map)
|
|
2560
|
+
*/
|
|
2039
2561
|
options: {
|
|
2040
2562
|
[key: string]: any;
|
|
2041
2563
|
};
|
|
2564
|
+
/**
|
|
2565
|
+
* RKE monitoring provider (string)
|
|
2566
|
+
*/
|
|
2042
2567
|
provider: string;
|
|
2568
|
+
/**
|
|
2569
|
+
* RKE monitoring replicas (int)
|
|
2570
|
+
*/
|
|
2043
2571
|
replicas: number;
|
|
2044
2572
|
/**
|
|
2045
2573
|
* Monitoring add-on tolerations
|
|
@@ -2051,10 +2579,25 @@ export interface ClusterRkeConfigMonitoring {
|
|
|
2051
2579
|
updateStrategy?: outputs.ClusterRkeConfigMonitoringUpdateStrategy;
|
|
2052
2580
|
}
|
|
2053
2581
|
export interface ClusterRkeConfigMonitoringToleration {
|
|
2582
|
+
/**
|
|
2583
|
+
* The GKE taint effect (string)
|
|
2584
|
+
*/
|
|
2054
2585
|
effect?: string;
|
|
2586
|
+
/**
|
|
2587
|
+
* The GKE taint key (string)
|
|
2588
|
+
*/
|
|
2055
2589
|
key: string;
|
|
2590
|
+
/**
|
|
2591
|
+
* The toleration operator. `Equal`, and `Exists` are supported. Default: `Equal` (string)
|
|
2592
|
+
*/
|
|
2056
2593
|
operator?: string;
|
|
2594
|
+
/**
|
|
2595
|
+
* The toleration seconds (int)
|
|
2596
|
+
*/
|
|
2057
2597
|
seconds: number;
|
|
2598
|
+
/**
|
|
2599
|
+
* The GKE taint value (string)
|
|
2600
|
+
*/
|
|
2058
2601
|
value?: string;
|
|
2059
2602
|
}
|
|
2060
2603
|
export interface ClusterRkeConfigMonitoringUpdateStrategy {
|
|
@@ -2078,120 +2621,402 @@ export interface ClusterRkeConfigMonitoringUpdateStrategyRollingUpdate {
|
|
|
2078
2621
|
maxUnavailable?: number;
|
|
2079
2622
|
}
|
|
2080
2623
|
export interface ClusterRkeConfigNetwork {
|
|
2624
|
+
/**
|
|
2625
|
+
* ACI provider config for RKE network (list maxitems:63)
|
|
2626
|
+
*/
|
|
2081
2627
|
aciNetworkProvider?: outputs.ClusterRkeConfigNetworkAciNetworkProvider;
|
|
2628
|
+
/**
|
|
2629
|
+
* Calico provider config for RKE network (list maxitems:1)
|
|
2630
|
+
*/
|
|
2082
2631
|
calicoNetworkProvider?: outputs.ClusterRkeConfigNetworkCalicoNetworkProvider;
|
|
2632
|
+
/**
|
|
2633
|
+
* Canal provider config for RKE network (list maxitems:1)
|
|
2634
|
+
*/
|
|
2083
2635
|
canalNetworkProvider?: outputs.ClusterRkeConfigNetworkCanalNetworkProvider;
|
|
2636
|
+
/**
|
|
2637
|
+
* Flannel provider config for RKE network (list maxitems:1)
|
|
2638
|
+
*/
|
|
2084
2639
|
flannelNetworkProvider?: outputs.ClusterRkeConfigNetworkFlannelNetworkProvider;
|
|
2640
|
+
/**
|
|
2641
|
+
* Network provider MTU. Default `0` (int)
|
|
2642
|
+
*/
|
|
2085
2643
|
mtu?: number;
|
|
2644
|
+
/**
|
|
2645
|
+
* RKE options for network (map)
|
|
2646
|
+
*/
|
|
2086
2647
|
options: {
|
|
2087
2648
|
[key: string]: any;
|
|
2088
2649
|
};
|
|
2650
|
+
/**
|
|
2651
|
+
* Plugin for RKE network. `canal` (default), `flannel`, `calico`, `none` and `weave` are supported. (string)
|
|
2652
|
+
*/
|
|
2089
2653
|
plugin: string;
|
|
2090
2654
|
/**
|
|
2091
2655
|
* Network add-on tolerations
|
|
2092
2656
|
*/
|
|
2093
2657
|
tolerations?: outputs.ClusterRkeConfigNetworkToleration[];
|
|
2658
|
+
/**
|
|
2659
|
+
* Weave provider config for RKE network (list maxitems:1)
|
|
2660
|
+
*/
|
|
2094
2661
|
weaveNetworkProvider?: outputs.ClusterRkeConfigNetworkWeaveNetworkProvider;
|
|
2095
2662
|
}
|
|
2096
2663
|
export interface ClusterRkeConfigNetworkAciNetworkProvider {
|
|
2664
|
+
/**
|
|
2665
|
+
* Attachable entity profile (string)
|
|
2666
|
+
*/
|
|
2097
2667
|
aep: string;
|
|
2668
|
+
/**
|
|
2669
|
+
* List of APIC hosts to connect for APIC API (list)
|
|
2670
|
+
*/
|
|
2098
2671
|
apicHosts: string[];
|
|
2672
|
+
/**
|
|
2673
|
+
* APIC refresh ticker adjust amount (string)
|
|
2674
|
+
*/
|
|
2099
2675
|
apicRefreshTickerAdjust?: string;
|
|
2676
|
+
/**
|
|
2677
|
+
* APIC refresh time in seconds (string)
|
|
2678
|
+
*/
|
|
2100
2679
|
apicRefreshTime?: string;
|
|
2680
|
+
/**
|
|
2681
|
+
* APIC subscription delay amount (string)
|
|
2682
|
+
*/
|
|
2101
2683
|
apicSubscriptionDelay?: string;
|
|
2684
|
+
/**
|
|
2685
|
+
* APIC user certificate (string)
|
|
2686
|
+
*/
|
|
2102
2687
|
apicUserCrt: string;
|
|
2688
|
+
/**
|
|
2689
|
+
* APIC user key (string)
|
|
2690
|
+
*/
|
|
2103
2691
|
apicUserKey: string;
|
|
2692
|
+
/**
|
|
2693
|
+
* APIC user name (string)
|
|
2694
|
+
*/
|
|
2104
2695
|
apicUserName: string;
|
|
2696
|
+
/**
|
|
2697
|
+
* cAPIC cloud (string)
|
|
2698
|
+
*/
|
|
2105
2699
|
capic?: string;
|
|
2700
|
+
/**
|
|
2701
|
+
* Log level for ACI controller (string)
|
|
2702
|
+
*/
|
|
2106
2703
|
controllerLogLevel?: string;
|
|
2704
|
+
/**
|
|
2705
|
+
* Whether to disable periodic SNAT global info sync (string)
|
|
2706
|
+
*/
|
|
2107
2707
|
disablePeriodicSnatGlobalInfoSync?: string;
|
|
2708
|
+
/**
|
|
2709
|
+
* Whether to disable waiting for network (string)
|
|
2710
|
+
*/
|
|
2108
2711
|
disableWaitForNetwork?: string;
|
|
2712
|
+
/**
|
|
2713
|
+
* Whether to enable drop log (string)
|
|
2714
|
+
*/
|
|
2109
2715
|
dropLogEnable?: string;
|
|
2716
|
+
/**
|
|
2717
|
+
* The duration to wait for network (string)
|
|
2718
|
+
*/
|
|
2110
2719
|
durationWaitForNetwork?: string;
|
|
2720
|
+
/**
|
|
2721
|
+
* Whether to enable endpoint slices (string)
|
|
2722
|
+
*/
|
|
2111
2723
|
enableEndpointSlice?: string;
|
|
2724
|
+
/**
|
|
2725
|
+
* Encap type: vxlan or vlan (string)
|
|
2726
|
+
*/
|
|
2112
2727
|
encapType: string;
|
|
2728
|
+
/**
|
|
2729
|
+
* EP registry (string)
|
|
2730
|
+
*/
|
|
2113
2731
|
epRegistry?: string;
|
|
2732
|
+
/**
|
|
2733
|
+
* Subnet to use for dynamic external IPs (string)
|
|
2734
|
+
*/
|
|
2114
2735
|
externDynamic: string;
|
|
2736
|
+
/**
|
|
2737
|
+
* Subnet to use for static external IPs (string)
|
|
2738
|
+
*/
|
|
2115
2739
|
externStatic: string;
|
|
2740
|
+
/**
|
|
2741
|
+
* GBH pod subnet (string)
|
|
2742
|
+
*/
|
|
2116
2743
|
gbpPodSubnet?: string;
|
|
2744
|
+
/**
|
|
2745
|
+
* Log level for ACI host agent (string)
|
|
2746
|
+
*/
|
|
2117
2747
|
hostAgentLogLevel?: string;
|
|
2748
|
+
/**
|
|
2749
|
+
* Image pull policy (string)
|
|
2750
|
+
*/
|
|
2118
2751
|
imagePullPolicy?: string;
|
|
2752
|
+
/**
|
|
2753
|
+
* Image pull policy (string)
|
|
2754
|
+
*/
|
|
2119
2755
|
imagePullSecret?: string;
|
|
2756
|
+
/**
|
|
2757
|
+
* The VLAN used by ACI infra (string)
|
|
2758
|
+
*/
|
|
2120
2759
|
infraVlan?: string;
|
|
2760
|
+
/**
|
|
2761
|
+
* Whether to install Istio (string)
|
|
2762
|
+
*/
|
|
2121
2763
|
installIstio?: string;
|
|
2764
|
+
/**
|
|
2765
|
+
* Istio profile name (string)
|
|
2766
|
+
*/
|
|
2122
2767
|
istioProfile?: string;
|
|
2768
|
+
/**
|
|
2769
|
+
* List of Kafka broker hosts (list)
|
|
2770
|
+
*/
|
|
2123
2771
|
kafkaBrokers?: string[];
|
|
2772
|
+
/**
|
|
2773
|
+
* Kafka client certificate (string)
|
|
2774
|
+
*/
|
|
2124
2775
|
kafkaClientCrt?: string;
|
|
2776
|
+
/**
|
|
2777
|
+
* Kafka client key (string)
|
|
2778
|
+
*/
|
|
2125
2779
|
kafkaClientKey?: string;
|
|
2780
|
+
/**
|
|
2781
|
+
* The VLAN used by the physdom for nodes (string)
|
|
2782
|
+
*/
|
|
2126
2783
|
kubeApiVlan: string;
|
|
2784
|
+
/**
|
|
2785
|
+
* L3out (string)
|
|
2786
|
+
*/
|
|
2127
2787
|
l3out: string;
|
|
2788
|
+
/**
|
|
2789
|
+
* L3out external networks (list)
|
|
2790
|
+
*/
|
|
2128
2791
|
l3outExternalNetworks: string[];
|
|
2792
|
+
/**
|
|
2793
|
+
* Max nodes in service graph (string)
|
|
2794
|
+
*/
|
|
2129
2795
|
maxNodesSvcGraph?: string;
|
|
2796
|
+
/**
|
|
2797
|
+
* End of mcast range (string)
|
|
2798
|
+
*/
|
|
2130
2799
|
mcastRangeEnd: string;
|
|
2800
|
+
/**
|
|
2801
|
+
* Start of mcast range (string)
|
|
2802
|
+
*/
|
|
2131
2803
|
mcastRangeStart: string;
|
|
2804
|
+
/**
|
|
2805
|
+
* MTU head room amount (string)
|
|
2806
|
+
*/
|
|
2132
2807
|
mtuHeadRoom?: string;
|
|
2808
|
+
/**
|
|
2809
|
+
* Whether to disable Multus (string)
|
|
2810
|
+
*/
|
|
2133
2811
|
multusDisable?: string;
|
|
2812
|
+
/**
|
|
2813
|
+
* Whether to use priority class (string)
|
|
2814
|
+
*/
|
|
2134
2815
|
noPriorityClass?: string;
|
|
2816
|
+
/**
|
|
2817
|
+
* Whether to enable node pod interface (string)
|
|
2818
|
+
*/
|
|
2135
2819
|
nodePodIfEnable?: string;
|
|
2820
|
+
/**
|
|
2821
|
+
* Subnet to use for nodes (string)
|
|
2822
|
+
*/
|
|
2136
2823
|
nodeSubnet: string;
|
|
2824
|
+
/**
|
|
2825
|
+
* Subnet to use for service graph (string)
|
|
2826
|
+
*/
|
|
2137
2827
|
nodeSvcSubnet: string;
|
|
2828
|
+
/**
|
|
2829
|
+
* Whether to use client SSL for Opflex (string)
|
|
2830
|
+
*/
|
|
2138
2831
|
opflexClientSsl?: string;
|
|
2832
|
+
/**
|
|
2833
|
+
* Opflex device delete timeout (string)
|
|
2834
|
+
*/
|
|
2139
2835
|
opflexDeviceDeleteTimeout?: string;
|
|
2836
|
+
/**
|
|
2837
|
+
* Log level for ACI opflex (string)
|
|
2838
|
+
*/
|
|
2140
2839
|
opflexLogLevel?: string;
|
|
2840
|
+
/**
|
|
2841
|
+
* Opflex mode (string)
|
|
2842
|
+
*/
|
|
2141
2843
|
opflexMode?: string;
|
|
2844
|
+
/**
|
|
2845
|
+
* Opflex server port (string)
|
|
2846
|
+
*/
|
|
2142
2847
|
opflexServerPort?: string;
|
|
2848
|
+
/**
|
|
2849
|
+
* Overlay VRF name (string)
|
|
2850
|
+
*/
|
|
2143
2851
|
overlayVrfName?: string;
|
|
2852
|
+
/**
|
|
2853
|
+
* OVS memory limit (string)
|
|
2854
|
+
*/
|
|
2144
2855
|
ovsMemoryLimit?: string;
|
|
2856
|
+
/**
|
|
2857
|
+
* Policy-based routing tracking non snat (string)
|
|
2858
|
+
*/
|
|
2145
2859
|
pbrTrackingNonSnat?: string;
|
|
2860
|
+
/**
|
|
2861
|
+
* Pod subnet chunk size (string)
|
|
2862
|
+
*/
|
|
2146
2863
|
podSubnetChunkSize?: string;
|
|
2864
|
+
/**
|
|
2865
|
+
* Whether to run GBP container (string)
|
|
2866
|
+
*/
|
|
2147
2867
|
runGbpContainer?: string;
|
|
2868
|
+
/**
|
|
2869
|
+
* Whether to run Opflex server container (string)
|
|
2870
|
+
*/
|
|
2148
2871
|
runOpflexServerContainer?: string;
|
|
2872
|
+
/**
|
|
2873
|
+
* Service monitor interval (string)
|
|
2874
|
+
*/
|
|
2149
2875
|
serviceMonitorInterval?: string;
|
|
2876
|
+
/**
|
|
2877
|
+
* The VLAN used by LoadBalancer services (string)
|
|
2878
|
+
*/
|
|
2150
2879
|
serviceVlan: string;
|
|
2880
|
+
/**
|
|
2881
|
+
* Snat contract scope (string)
|
|
2882
|
+
*/
|
|
2151
2883
|
snatContractScope?: string;
|
|
2884
|
+
/**
|
|
2885
|
+
* Snat namespace (string)
|
|
2886
|
+
*/
|
|
2152
2887
|
snatNamespace?: string;
|
|
2888
|
+
/**
|
|
2889
|
+
* End of snat port range (string)
|
|
2890
|
+
*/
|
|
2153
2891
|
snatPortRangeEnd?: string;
|
|
2892
|
+
/**
|
|
2893
|
+
* End of snat port range (string)
|
|
2894
|
+
*/
|
|
2154
2895
|
snatPortRangeStart?: string;
|
|
2896
|
+
/**
|
|
2897
|
+
* Snat ports per node (string)
|
|
2898
|
+
*/
|
|
2155
2899
|
snatPortsPerNode?: string;
|
|
2900
|
+
/**
|
|
2901
|
+
* Whether to enable SR-IOV (string)
|
|
2902
|
+
*/
|
|
2156
2903
|
sriovEnable?: string;
|
|
2904
|
+
/**
|
|
2905
|
+
* Subnet domain name (string)
|
|
2906
|
+
*/
|
|
2157
2907
|
subnetDomainName?: string;
|
|
2908
|
+
/**
|
|
2909
|
+
* ACI system ID (string)
|
|
2910
|
+
*/
|
|
2158
2911
|
systemId: string;
|
|
2912
|
+
/**
|
|
2913
|
+
* ACI tenant (string)
|
|
2914
|
+
*/
|
|
2159
2915
|
tenant?: string;
|
|
2160
2916
|
token: string;
|
|
2917
|
+
/**
|
|
2918
|
+
* Whether to use ACI anywhere CRD (string)
|
|
2919
|
+
*/
|
|
2161
2920
|
useAciAnywhereCrd?: string;
|
|
2921
|
+
/**
|
|
2922
|
+
* Whether to use ACI CNI priority class (string)
|
|
2923
|
+
*/
|
|
2162
2924
|
useAciCniPriorityClass?: string;
|
|
2925
|
+
/**
|
|
2926
|
+
* Whether to use cluster role (string)
|
|
2927
|
+
*/
|
|
2163
2928
|
useClusterRole?: string;
|
|
2929
|
+
/**
|
|
2930
|
+
* Whether to use host netns volume (string)
|
|
2931
|
+
*/
|
|
2164
2932
|
useHostNetnsVolume?: string;
|
|
2933
|
+
/**
|
|
2934
|
+
* Whether use Opflex server volume (string)
|
|
2935
|
+
*/
|
|
2165
2936
|
useOpflexServerVolume?: string;
|
|
2937
|
+
/**
|
|
2938
|
+
* Whether ACI containers should run as privileged (string)
|
|
2939
|
+
*/
|
|
2166
2940
|
usePrivilegedContainer?: string;
|
|
2941
|
+
/**
|
|
2942
|
+
* VMM controller configuration (string)
|
|
2943
|
+
*/
|
|
2167
2944
|
vmmController?: string;
|
|
2945
|
+
/**
|
|
2946
|
+
* VMM domain configuration (string)
|
|
2947
|
+
*/
|
|
2168
2948
|
vmmDomain?: string;
|
|
2949
|
+
/**
|
|
2950
|
+
* VRF name (string)
|
|
2951
|
+
*/
|
|
2169
2952
|
vrfName: string;
|
|
2953
|
+
/**
|
|
2954
|
+
* VRF tenant (string)
|
|
2955
|
+
*/
|
|
2170
2956
|
vrfTenant: string;
|
|
2171
2957
|
}
|
|
2172
2958
|
export interface ClusterRkeConfigNetworkCalicoNetworkProvider {
|
|
2959
|
+
/**
|
|
2960
|
+
* RKE options for Calico network provider (string)
|
|
2961
|
+
*/
|
|
2173
2962
|
cloudProvider: string;
|
|
2174
2963
|
}
|
|
2175
2964
|
export interface ClusterRkeConfigNetworkCanalNetworkProvider {
|
|
2965
|
+
/**
|
|
2966
|
+
* Iface config Flannel network provider (string)
|
|
2967
|
+
*/
|
|
2176
2968
|
iface: string;
|
|
2177
2969
|
}
|
|
2178
2970
|
export interface ClusterRkeConfigNetworkFlannelNetworkProvider {
|
|
2971
|
+
/**
|
|
2972
|
+
* Iface config Flannel network provider (string)
|
|
2973
|
+
*/
|
|
2179
2974
|
iface: string;
|
|
2180
2975
|
}
|
|
2181
2976
|
export interface ClusterRkeConfigNetworkToleration {
|
|
2977
|
+
/**
|
|
2978
|
+
* The GKE taint effect (string)
|
|
2979
|
+
*/
|
|
2182
2980
|
effect?: string;
|
|
2981
|
+
/**
|
|
2982
|
+
* The GKE taint key (string)
|
|
2983
|
+
*/
|
|
2183
2984
|
key: string;
|
|
2985
|
+
/**
|
|
2986
|
+
* The toleration operator. `Equal`, and `Exists` are supported. Default: `Equal` (string)
|
|
2987
|
+
*/
|
|
2184
2988
|
operator?: string;
|
|
2989
|
+
/**
|
|
2990
|
+
* The toleration seconds (int)
|
|
2991
|
+
*/
|
|
2185
2992
|
seconds: number;
|
|
2993
|
+
/**
|
|
2994
|
+
* The GKE taint value (string)
|
|
2995
|
+
*/
|
|
2186
2996
|
value?: string;
|
|
2187
2997
|
}
|
|
2188
2998
|
export interface ClusterRkeConfigNetworkWeaveNetworkProvider {
|
|
2999
|
+
/**
|
|
3000
|
+
* Registry password (string)
|
|
3001
|
+
*/
|
|
2189
3002
|
password: string;
|
|
2190
3003
|
}
|
|
2191
3004
|
export interface ClusterRkeConfigNode {
|
|
3005
|
+
/**
|
|
3006
|
+
* Address ip for node (string)
|
|
3007
|
+
*/
|
|
2192
3008
|
address: string;
|
|
3009
|
+
/**
|
|
3010
|
+
* Docker socket for node (string)
|
|
3011
|
+
*/
|
|
2193
3012
|
dockerSocket: string;
|
|
3013
|
+
/**
|
|
3014
|
+
* Hostname override for node (string)
|
|
3015
|
+
*/
|
|
2194
3016
|
hostnameOverride?: string;
|
|
3017
|
+
/**
|
|
3018
|
+
* Internal ip for node (string)
|
|
3019
|
+
*/
|
|
2195
3020
|
internalAddress?: string;
|
|
2196
3021
|
/**
|
|
2197
3022
|
* Labels for the Cluster (map)
|
|
@@ -2199,12 +3024,33 @@ export interface ClusterRkeConfigNode {
|
|
|
2199
3024
|
labels?: {
|
|
2200
3025
|
[key: string]: any;
|
|
2201
3026
|
};
|
|
3027
|
+
/**
|
|
3028
|
+
* Id for the node (string)
|
|
3029
|
+
*/
|
|
2202
3030
|
nodeId?: string;
|
|
3031
|
+
/**
|
|
3032
|
+
* Port for node. Default `22` (string)
|
|
3033
|
+
*/
|
|
2203
3034
|
port?: string;
|
|
3035
|
+
/**
|
|
3036
|
+
* Roles for the node. `controlplane`, `etcd` and `worker` are supported. (list)
|
|
3037
|
+
*/
|
|
2204
3038
|
roles: string[];
|
|
3039
|
+
/**
|
|
3040
|
+
* Use ssh agent auth. Default `false` (bool)
|
|
3041
|
+
*/
|
|
2205
3042
|
sshAgentAuth?: boolean;
|
|
3043
|
+
/**
|
|
3044
|
+
* Node SSH private key (string)
|
|
3045
|
+
*/
|
|
2206
3046
|
sshKey: string;
|
|
3047
|
+
/**
|
|
3048
|
+
* Node SSH private key path (string)
|
|
3049
|
+
*/
|
|
2207
3050
|
sshKeyPath: string;
|
|
3051
|
+
/**
|
|
3052
|
+
* Registry user (string)
|
|
3053
|
+
*/
|
|
2208
3054
|
user: string;
|
|
2209
3055
|
}
|
|
2210
3056
|
export interface ClusterRkeConfigPrivateRegistry {
|
|
@@ -2212,61 +3058,181 @@ export interface ClusterRkeConfigPrivateRegistry {
|
|
|
2212
3058
|
* ECR credential plugin config
|
|
2213
3059
|
*/
|
|
2214
3060
|
ecrCredentialPlugin?: outputs.ClusterRkeConfigPrivateRegistryEcrCredentialPlugin;
|
|
3061
|
+
/**
|
|
3062
|
+
* Set as default registry. Default `false` (bool)
|
|
3063
|
+
*/
|
|
2215
3064
|
isDefault?: boolean;
|
|
3065
|
+
/**
|
|
3066
|
+
* Registry password (string)
|
|
3067
|
+
*/
|
|
2216
3068
|
password?: string;
|
|
3069
|
+
/**
|
|
3070
|
+
* Registry URL (string)
|
|
3071
|
+
*/
|
|
2217
3072
|
url: string;
|
|
3073
|
+
/**
|
|
3074
|
+
* Registry user (string)
|
|
3075
|
+
*/
|
|
2218
3076
|
user?: string;
|
|
2219
3077
|
}
|
|
2220
3078
|
export interface ClusterRkeConfigPrivateRegistryEcrCredentialPlugin {
|
|
3079
|
+
/**
|
|
3080
|
+
* AWS access key ID (string)
|
|
3081
|
+
*/
|
|
2221
3082
|
awsAccessKeyId?: string;
|
|
3083
|
+
/**
|
|
3084
|
+
* AWS secret access key (string)
|
|
3085
|
+
*/
|
|
2222
3086
|
awsSecretAccessKey?: string;
|
|
3087
|
+
/**
|
|
3088
|
+
* AWS session token (string)
|
|
3089
|
+
*/
|
|
2223
3090
|
awsSessionToken?: string;
|
|
2224
3091
|
}
|
|
2225
3092
|
export interface ClusterRkeConfigServices {
|
|
3093
|
+
/**
|
|
3094
|
+
* Etcd options for RKE services (list maxitems:1)
|
|
3095
|
+
*/
|
|
2226
3096
|
etcd: outputs.ClusterRkeConfigServicesEtcd;
|
|
3097
|
+
/**
|
|
3098
|
+
* Kube API options for RKE services (list maxitems:1)
|
|
3099
|
+
*/
|
|
2227
3100
|
kubeApi: outputs.ClusterRkeConfigServicesKubeApi;
|
|
3101
|
+
/**
|
|
3102
|
+
* Kube Controller options for RKE services (list maxitems:1)
|
|
3103
|
+
*/
|
|
2228
3104
|
kubeController: outputs.ClusterRkeConfigServicesKubeController;
|
|
3105
|
+
/**
|
|
3106
|
+
* Kubelet options for RKE services (list maxitems:1)
|
|
3107
|
+
*/
|
|
2229
3108
|
kubelet: outputs.ClusterRkeConfigServicesKubelet;
|
|
3109
|
+
/**
|
|
3110
|
+
* Kubeproxy options for RKE services (list maxitems:1)
|
|
3111
|
+
*/
|
|
2230
3112
|
kubeproxy: outputs.ClusterRkeConfigServicesKubeproxy;
|
|
3113
|
+
/**
|
|
3114
|
+
* Scheduler options for RKE services (list maxitems:1)
|
|
3115
|
+
*/
|
|
2231
3116
|
scheduler: outputs.ClusterRkeConfigServicesScheduler;
|
|
2232
3117
|
}
|
|
2233
3118
|
export interface ClusterRkeConfigServicesEtcd {
|
|
3119
|
+
/**
|
|
3120
|
+
* Backup options for etcd service. For Rancher v2.2.x (list maxitems:1)
|
|
3121
|
+
*/
|
|
2234
3122
|
backupConfig: outputs.ClusterRkeConfigServicesEtcdBackupConfig;
|
|
2235
3123
|
/**
|
|
2236
3124
|
* (Computed/Sensitive) K8s cluster ca cert (string)
|
|
2237
3125
|
*/
|
|
2238
3126
|
caCert: string;
|
|
3127
|
+
/**
|
|
3128
|
+
* TLS certificate for etcd service (string)
|
|
3129
|
+
*/
|
|
2239
3130
|
cert: string;
|
|
3131
|
+
/**
|
|
3132
|
+
* Creation option for etcd service (string)
|
|
3133
|
+
*/
|
|
2240
3134
|
creation: string;
|
|
3135
|
+
/**
|
|
3136
|
+
* External urls for etcd service (list)
|
|
3137
|
+
*/
|
|
2241
3138
|
externalUrls?: string[];
|
|
3139
|
+
/**
|
|
3140
|
+
* Extra arguments for scheduler service (map)
|
|
3141
|
+
*/
|
|
2242
3142
|
extraArgs: {
|
|
2243
3143
|
[key: string]: any;
|
|
2244
3144
|
};
|
|
3145
|
+
/**
|
|
3146
|
+
* Extra binds for scheduler service (list)
|
|
3147
|
+
*/
|
|
2245
3148
|
extraBinds?: string[];
|
|
3149
|
+
/**
|
|
3150
|
+
* Extra environment for scheduler service (list)
|
|
3151
|
+
*/
|
|
2246
3152
|
extraEnvs?: string[];
|
|
3153
|
+
/**
|
|
3154
|
+
* Etcd service GID. Default: `0`. For Rancher v2.3.x and above (int)
|
|
3155
|
+
*/
|
|
2247
3156
|
gid?: number;
|
|
3157
|
+
/**
|
|
3158
|
+
* Docker image for scheduler service (string)
|
|
3159
|
+
*/
|
|
2248
3160
|
image: string;
|
|
3161
|
+
/**
|
|
3162
|
+
* The GKE taint key (string)
|
|
3163
|
+
*/
|
|
2249
3164
|
key: string;
|
|
3165
|
+
/**
|
|
3166
|
+
* (Optional) Audit log path. Default: `/var/log/kube-audit/audit-log.json` (string)
|
|
3167
|
+
*/
|
|
2250
3168
|
path: string;
|
|
3169
|
+
/**
|
|
3170
|
+
* Retention for etcd backup. Default `6` (int)
|
|
3171
|
+
*/
|
|
2251
3172
|
retention: string;
|
|
3173
|
+
/**
|
|
3174
|
+
* Snapshot option for etcd service (bool)
|
|
3175
|
+
*/
|
|
2252
3176
|
snapshot: boolean;
|
|
3177
|
+
/**
|
|
3178
|
+
* Etcd service UID. Default: `0`. For Rancher v2.3.x and above (int)
|
|
3179
|
+
*/
|
|
2253
3180
|
uid?: number;
|
|
2254
3181
|
}
|
|
2255
3182
|
export interface ClusterRkeConfigServicesEtcdBackupConfig {
|
|
3183
|
+
/**
|
|
3184
|
+
* Enable the authorized cluster endpoint. Default `true` (bool)
|
|
3185
|
+
*/
|
|
2256
3186
|
enabled?: boolean;
|
|
3187
|
+
/**
|
|
3188
|
+
* Interval hours for etcd backup. Default `12` (int)
|
|
3189
|
+
*/
|
|
2257
3190
|
intervalHours?: number;
|
|
3191
|
+
/**
|
|
3192
|
+
* Retention for etcd backup. Default `6` (int)
|
|
3193
|
+
*/
|
|
2258
3194
|
retention?: number;
|
|
3195
|
+
/**
|
|
3196
|
+
* S3 config options for etcd backup (list maxitems:1)
|
|
3197
|
+
*/
|
|
2259
3198
|
s3BackupConfig?: outputs.ClusterRkeConfigServicesEtcdBackupConfigS3BackupConfig;
|
|
3199
|
+
/**
|
|
3200
|
+
* Safe timestamp for etcd backup. Default: `false` (bool)
|
|
3201
|
+
*/
|
|
2260
3202
|
safeTimestamp?: boolean;
|
|
3203
|
+
/**
|
|
3204
|
+
* RKE node drain timeout. Default: `60` (int)
|
|
3205
|
+
*/
|
|
2261
3206
|
timeout: number;
|
|
2262
3207
|
}
|
|
2263
3208
|
export interface ClusterRkeConfigServicesEtcdBackupConfigS3BackupConfig {
|
|
3209
|
+
/**
|
|
3210
|
+
* The AWS Client ID to use (string)
|
|
3211
|
+
*/
|
|
2264
3212
|
accessKey?: string;
|
|
3213
|
+
/**
|
|
3214
|
+
* Bucket name for S3 service (string)
|
|
3215
|
+
*/
|
|
2265
3216
|
bucketName: string;
|
|
3217
|
+
/**
|
|
3218
|
+
* Base64 encoded custom CA for S3 service. Use filebase64(<FILE>) for encoding file. Available from Rancher v2.2.5 (string)
|
|
3219
|
+
*/
|
|
2266
3220
|
customCa?: string;
|
|
3221
|
+
/**
|
|
3222
|
+
* Endpoint for S3 service (string)
|
|
3223
|
+
*/
|
|
2267
3224
|
endpoint: string;
|
|
3225
|
+
/**
|
|
3226
|
+
* Folder for S3 service. Available from Rancher v2.2.7 (string)
|
|
3227
|
+
*/
|
|
2268
3228
|
folder?: string;
|
|
3229
|
+
/**
|
|
3230
|
+
* The availability domain within the region to host the cluster. See [here](https://docs.cloud.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm) for a list of region names. (string)
|
|
3231
|
+
*/
|
|
2269
3232
|
region?: string;
|
|
3233
|
+
/**
|
|
3234
|
+
* The AWS Client Secret associated with the Client ID (string)
|
|
3235
|
+
*/
|
|
2270
3236
|
secretKey?: string;
|
|
2271
3237
|
}
|
|
2272
3238
|
export interface ClusterRkeConfigServicesKubeApi {
|
|
@@ -2274,18 +3240,51 @@ export interface ClusterRkeConfigServicesKubeApi {
|
|
|
2274
3240
|
* Cluster admission configuration
|
|
2275
3241
|
*/
|
|
2276
3242
|
admissionConfiguration?: outputs.ClusterRkeConfigServicesKubeApiAdmissionConfiguration;
|
|
3243
|
+
/**
|
|
3244
|
+
* Enable [AlwaysPullImages](https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers/#alwayspullimages) Admission controller plugin. [Rancher docs](https://rancher.com/docs/rke/latest/en/config-options/services/#kubernetes-api-server-options) Default: `false` (bool)
|
|
3245
|
+
*/
|
|
2277
3246
|
alwaysPullImages?: boolean;
|
|
3247
|
+
/**
|
|
3248
|
+
* K8s audit log configuration. (list maxitems: 1)
|
|
3249
|
+
*/
|
|
2278
3250
|
auditLog?: outputs.ClusterRkeConfigServicesKubeApiAuditLog;
|
|
3251
|
+
/**
|
|
3252
|
+
* K8s event rate limit configuration. (list maxitems: 1)
|
|
3253
|
+
*/
|
|
2279
3254
|
eventRateLimit?: outputs.ClusterRkeConfigServicesKubeApiEventRateLimit;
|
|
3255
|
+
/**
|
|
3256
|
+
* Extra arguments for scheduler service (map)
|
|
3257
|
+
*/
|
|
2280
3258
|
extraArgs: {
|
|
2281
3259
|
[key: string]: any;
|
|
2282
3260
|
};
|
|
3261
|
+
/**
|
|
3262
|
+
* Extra binds for scheduler service (list)
|
|
3263
|
+
*/
|
|
2283
3264
|
extraBinds?: string[];
|
|
3265
|
+
/**
|
|
3266
|
+
* Extra environment for scheduler service (list)
|
|
3267
|
+
*/
|
|
2284
3268
|
extraEnvs?: string[];
|
|
3269
|
+
/**
|
|
3270
|
+
* Docker image for scheduler service (string)
|
|
3271
|
+
*/
|
|
2285
3272
|
image: string;
|
|
3273
|
+
/**
|
|
3274
|
+
* Pod Security Policy option for kube API service. Default `false` (bool)
|
|
3275
|
+
*/
|
|
2286
3276
|
podSecurityPolicy?: boolean;
|
|
3277
|
+
/**
|
|
3278
|
+
* [Encrypt k8s secret data configration](https://rancher.com/docs/rke/latest/en/config-options/secrets-encryption/). (list maxitem: 1)
|
|
3279
|
+
*/
|
|
2287
3280
|
secretsEncryptionConfig?: outputs.ClusterRkeConfigServicesKubeApiSecretsEncryptionConfig;
|
|
3281
|
+
/**
|
|
3282
|
+
* Service Cluster ip Range option for kube controller service (string)
|
|
3283
|
+
*/
|
|
2288
3284
|
serviceClusterIpRange: string;
|
|
3285
|
+
/**
|
|
3286
|
+
* Service Node Port Range option for kube API service (string)
|
|
3287
|
+
*/
|
|
2289
3288
|
serviceNodePortRange: string;
|
|
2290
3289
|
}
|
|
2291
3290
|
export interface ClusterRkeConfigServicesKubeApiAdmissionConfiguration {
|
|
@@ -2317,75 +3316,258 @@ export interface ClusterRkeConfigServicesKubeApiAdmissionConfigurationPlugin {
|
|
|
2317
3316
|
path?: string;
|
|
2318
3317
|
}
|
|
2319
3318
|
export interface ClusterRkeConfigServicesKubeApiAuditLog {
|
|
3319
|
+
/**
|
|
3320
|
+
* Event rate limit configuration yaml encoded definition. `apiVersion` and `kind: Configuration"` fields are required in the yaml. [More info](https://rancher.com/docs/rke/latest/en/config-options/rate-limiting/) (string) Ex:
|
|
3321
|
+
*
|
|
3322
|
+
* ```
|
|
3323
|
+
* configuration = <<EOF
|
|
3324
|
+
* apiVersion: eventratelimit.admission.k8s.io/v1alpha1
|
|
3325
|
+
* kind: Configuration
|
|
3326
|
+
* limits:
|
|
3327
|
+
* - type: Server
|
|
3328
|
+
* burst: 35000
|
|
3329
|
+
* qps: 6000
|
|
3330
|
+
* EOF
|
|
3331
|
+
* ```
|
|
3332
|
+
*/
|
|
2320
3333
|
configuration: outputs.ClusterRkeConfigServicesKubeApiAuditLogConfiguration;
|
|
3334
|
+
/**
|
|
3335
|
+
* Enable the authorized cluster endpoint. Default `true` (bool)
|
|
3336
|
+
*/
|
|
2321
3337
|
enabled?: boolean;
|
|
2322
3338
|
}
|
|
2323
3339
|
export interface ClusterRkeConfigServicesKubeApiAuditLogConfiguration {
|
|
3340
|
+
/**
|
|
3341
|
+
* Audit log format. Default: 'json' (string)
|
|
3342
|
+
*/
|
|
2324
3343
|
format?: string;
|
|
3344
|
+
/**
|
|
3345
|
+
* Audit log max age. Default: `30` (int)
|
|
3346
|
+
*/
|
|
2325
3347
|
maxAge?: number;
|
|
3348
|
+
/**
|
|
3349
|
+
* Audit log max backup. Default: `10` (int)
|
|
3350
|
+
*/
|
|
2326
3351
|
maxBackup?: number;
|
|
3352
|
+
/**
|
|
3353
|
+
* The EKS node group maximum size. Default `2` (int)
|
|
3354
|
+
*/
|
|
2327
3355
|
maxSize?: number;
|
|
3356
|
+
/**
|
|
3357
|
+
* (Optional) Audit log path. Default: `/var/log/kube-audit/audit-log.json` (string)
|
|
3358
|
+
*/
|
|
2328
3359
|
path?: string;
|
|
3360
|
+
/**
|
|
3361
|
+
* Audit policy yaml encoded definition. `apiVersion` and `kind: Policy\nrules:"` fields are required in the yaml. [More info](https://rancher.com/docs/rke/latest/en/config-options/audit-log/) (string) Ex:
|
|
3362
|
+
*
|
|
3363
|
+
* ```
|
|
3364
|
+
* policy = <<EOF
|
|
3365
|
+
* apiVersion: audit.k8s.io/v1
|
|
3366
|
+
* kind: Policy
|
|
3367
|
+
* rules:
|
|
3368
|
+
* - level: RequestResponse
|
|
3369
|
+
* resources:
|
|
3370
|
+
* - resources:
|
|
3371
|
+
* - pods
|
|
3372
|
+
* EOF
|
|
3373
|
+
* ```
|
|
3374
|
+
*/
|
|
2329
3375
|
policy: string;
|
|
2330
3376
|
}
|
|
2331
3377
|
export interface ClusterRkeConfigServicesKubeApiEventRateLimit {
|
|
3378
|
+
/**
|
|
3379
|
+
* Event rate limit configuration yaml encoded definition. `apiVersion` and `kind: Configuration"` fields are required in the yaml. [More info](https://rancher.com/docs/rke/latest/en/config-options/rate-limiting/) (string) Ex:
|
|
3380
|
+
*
|
|
3381
|
+
* ```
|
|
3382
|
+
* configuration = <<EOF
|
|
3383
|
+
* apiVersion: eventratelimit.admission.k8s.io/v1alpha1
|
|
3384
|
+
* kind: Configuration
|
|
3385
|
+
* limits:
|
|
3386
|
+
* - type: Server
|
|
3387
|
+
* burst: 35000
|
|
3388
|
+
* qps: 6000
|
|
3389
|
+
* EOF
|
|
3390
|
+
* ```
|
|
3391
|
+
*/
|
|
2332
3392
|
configuration: string;
|
|
3393
|
+
/**
|
|
3394
|
+
* Enable the authorized cluster endpoint. Default `true` (bool)
|
|
3395
|
+
*/
|
|
2333
3396
|
enabled?: boolean;
|
|
2334
3397
|
}
|
|
2335
3398
|
export interface ClusterRkeConfigServicesKubeApiSecretsEncryptionConfig {
|
|
3399
|
+
/**
|
|
3400
|
+
* Secrets encryption yaml encoded custom configuration. `"apiVersion"` and `"kind":"EncryptionConfiguration"` fields are required in the yaml. [More info](https://rancher.com/docs/rke/latest/en/config-options/secrets-encryption/) (string) Ex:
|
|
3401
|
+
*
|
|
3402
|
+
* ```
|
|
3403
|
+
* custom_config = <<EOF
|
|
3404
|
+
* apiVersion: apiserver.config.k8s.io/v1
|
|
3405
|
+
* kind: EncryptionConfiguration
|
|
3406
|
+
* resources:
|
|
3407
|
+
* - resources:
|
|
3408
|
+
* - secrets
|
|
3409
|
+
* providers:
|
|
3410
|
+
* - aescbc:
|
|
3411
|
+
* keys:
|
|
3412
|
+
* - name: k-fw5hn
|
|
3413
|
+
* secret: RTczRjFDODMwQzAyMDVBREU4NDJBMUZFNDhCNzM5N0I=
|
|
3414
|
+
* identity: {}
|
|
3415
|
+
* EOF
|
|
3416
|
+
*
|
|
3417
|
+
* ```
|
|
3418
|
+
*/
|
|
2336
3419
|
customConfig?: string;
|
|
3420
|
+
/**
|
|
3421
|
+
* Enable the authorized cluster endpoint. Default `true` (bool)
|
|
3422
|
+
*/
|
|
2337
3423
|
enabled?: boolean;
|
|
2338
3424
|
}
|
|
2339
3425
|
export interface ClusterRkeConfigServicesKubeController {
|
|
3426
|
+
/**
|
|
3427
|
+
* Cluster CIDR option for kube controller service (string)
|
|
3428
|
+
*/
|
|
2340
3429
|
clusterCidr: string;
|
|
3430
|
+
/**
|
|
3431
|
+
* Extra arguments for scheduler service (map)
|
|
3432
|
+
*/
|
|
2341
3433
|
extraArgs: {
|
|
2342
3434
|
[key: string]: any;
|
|
2343
3435
|
};
|
|
3436
|
+
/**
|
|
3437
|
+
* Extra binds for scheduler service (list)
|
|
3438
|
+
*/
|
|
2344
3439
|
extraBinds?: string[];
|
|
3440
|
+
/**
|
|
3441
|
+
* Extra environment for scheduler service (list)
|
|
3442
|
+
*/
|
|
2345
3443
|
extraEnvs?: string[];
|
|
3444
|
+
/**
|
|
3445
|
+
* Docker image for scheduler service (string)
|
|
3446
|
+
*/
|
|
2346
3447
|
image: string;
|
|
3448
|
+
/**
|
|
3449
|
+
* Service Cluster ip Range option for kube controller service (string)
|
|
3450
|
+
*/
|
|
2347
3451
|
serviceClusterIpRange: string;
|
|
2348
3452
|
}
|
|
2349
3453
|
export interface ClusterRkeConfigServicesKubelet {
|
|
3454
|
+
/**
|
|
3455
|
+
* Cluster DNS Server option for kubelet service (string)
|
|
3456
|
+
*/
|
|
2350
3457
|
clusterDnsServer: string;
|
|
3458
|
+
/**
|
|
3459
|
+
* Cluster Domain option for kubelet service (string)
|
|
3460
|
+
*/
|
|
2351
3461
|
clusterDomain: string;
|
|
3462
|
+
/**
|
|
3463
|
+
* Extra arguments for scheduler service (map)
|
|
3464
|
+
*/
|
|
2352
3465
|
extraArgs: {
|
|
2353
3466
|
[key: string]: any;
|
|
2354
3467
|
};
|
|
3468
|
+
/**
|
|
3469
|
+
* Extra binds for scheduler service (list)
|
|
3470
|
+
*/
|
|
2355
3471
|
extraBinds?: string[];
|
|
3472
|
+
/**
|
|
3473
|
+
* Extra environment for scheduler service (list)
|
|
3474
|
+
*/
|
|
2356
3475
|
extraEnvs?: string[];
|
|
3476
|
+
/**
|
|
3477
|
+
* Enable or disable failing when swap on is not supported (bool)
|
|
3478
|
+
*/
|
|
2357
3479
|
failSwapOn: boolean;
|
|
3480
|
+
/**
|
|
3481
|
+
* [Generate a certificate signed by the kube-ca](https://rancher.com/docs/rke/latest/en/config-options/services/#kubelet-serving-certificate-requirements). Default `false` (bool)
|
|
3482
|
+
*/
|
|
2358
3483
|
generateServingCertificate?: boolean;
|
|
3484
|
+
/**
|
|
3485
|
+
* Docker image for scheduler service (string)
|
|
3486
|
+
*/
|
|
2359
3487
|
image: string;
|
|
3488
|
+
/**
|
|
3489
|
+
* Infra container image for kubelet service (string)
|
|
3490
|
+
*/
|
|
2360
3491
|
infraContainerImage: string;
|
|
2361
3492
|
}
|
|
2362
3493
|
export interface ClusterRkeConfigServicesKubeproxy {
|
|
3494
|
+
/**
|
|
3495
|
+
* Extra arguments for scheduler service (map)
|
|
3496
|
+
*/
|
|
2363
3497
|
extraArgs: {
|
|
2364
3498
|
[key: string]: any;
|
|
2365
3499
|
};
|
|
3500
|
+
/**
|
|
3501
|
+
* Extra binds for scheduler service (list)
|
|
3502
|
+
*/
|
|
2366
3503
|
extraBinds?: string[];
|
|
3504
|
+
/**
|
|
3505
|
+
* Extra environment for scheduler service (list)
|
|
3506
|
+
*/
|
|
2367
3507
|
extraEnvs?: string[];
|
|
3508
|
+
/**
|
|
3509
|
+
* Docker image for scheduler service (string)
|
|
3510
|
+
*/
|
|
2368
3511
|
image: string;
|
|
2369
3512
|
}
|
|
2370
3513
|
export interface ClusterRkeConfigServicesScheduler {
|
|
3514
|
+
/**
|
|
3515
|
+
* Extra arguments for scheduler service (map)
|
|
3516
|
+
*/
|
|
2371
3517
|
extraArgs: {
|
|
2372
3518
|
[key: string]: any;
|
|
2373
3519
|
};
|
|
3520
|
+
/**
|
|
3521
|
+
* Extra binds for scheduler service (list)
|
|
3522
|
+
*/
|
|
2374
3523
|
extraBinds?: string[];
|
|
3524
|
+
/**
|
|
3525
|
+
* Extra environment for scheduler service (list)
|
|
3526
|
+
*/
|
|
2375
3527
|
extraEnvs?: string[];
|
|
3528
|
+
/**
|
|
3529
|
+
* Docker image for scheduler service (string)
|
|
3530
|
+
*/
|
|
2376
3531
|
image: string;
|
|
2377
3532
|
}
|
|
2378
3533
|
export interface ClusterRkeConfigUpgradeStrategy {
|
|
3534
|
+
/**
|
|
3535
|
+
* RKE drain nodes. Default: `false` (bool)
|
|
3536
|
+
*/
|
|
2379
3537
|
drain?: boolean;
|
|
3538
|
+
/**
|
|
3539
|
+
* RKE drain node input (list Maxitems: 1)
|
|
3540
|
+
*/
|
|
2380
3541
|
drainInput: outputs.ClusterRkeConfigUpgradeStrategyDrainInput;
|
|
3542
|
+
/**
|
|
3543
|
+
* RKE max unavailable controlplane nodes. Default: `1` (string)
|
|
3544
|
+
*/
|
|
2381
3545
|
maxUnavailableControlplane?: string;
|
|
3546
|
+
/**
|
|
3547
|
+
* RKE max unavailable worker nodes. Default: `10%` (string)
|
|
3548
|
+
*/
|
|
2382
3549
|
maxUnavailableWorker?: string;
|
|
2383
3550
|
}
|
|
2384
3551
|
export interface ClusterRkeConfigUpgradeStrategyDrainInput {
|
|
3552
|
+
/**
|
|
3553
|
+
* Delete RKE node local data. Default: `false` (bool)
|
|
3554
|
+
*/
|
|
2385
3555
|
deleteLocalData?: boolean;
|
|
3556
|
+
/**
|
|
3557
|
+
* Force RKE node drain. Default: `false` (bool)
|
|
3558
|
+
*/
|
|
2386
3559
|
force?: boolean;
|
|
3560
|
+
/**
|
|
3561
|
+
* RKE node drain grace period. Default: `-1` (int)
|
|
3562
|
+
*/
|
|
2387
3563
|
gracePeriod?: number;
|
|
3564
|
+
/**
|
|
3565
|
+
* Ignore RKE daemon sets. Default: `true` (bool)
|
|
3566
|
+
*/
|
|
2388
3567
|
ignoreDaemonSets?: boolean;
|
|
3568
|
+
/**
|
|
3569
|
+
* RKE node drain timeout. Default: `60` (int)
|
|
3570
|
+
*/
|
|
2389
3571
|
timeout?: number;
|
|
2390
3572
|
}
|
|
2391
3573
|
export interface ClusterSyncNode {
|
|
@@ -2395,6 +3577,9 @@ export interface ClusterSyncNode {
|
|
|
2395
3577
|
annotations: {
|
|
2396
3578
|
[key: string]: any;
|
|
2397
3579
|
};
|
|
3580
|
+
/**
|
|
3581
|
+
* The total resources of a node (map).
|
|
3582
|
+
*/
|
|
2398
3583
|
capacity: {
|
|
2399
3584
|
[key: string]: any;
|
|
2400
3585
|
};
|
|
@@ -2402,12 +3587,21 @@ export interface ClusterSyncNode {
|
|
|
2402
3587
|
* The cluster ID that is syncing (string)
|
|
2403
3588
|
*/
|
|
2404
3589
|
clusterId: string;
|
|
3590
|
+
/**
|
|
3591
|
+
* The external IP address of the node (string).
|
|
3592
|
+
*/
|
|
2405
3593
|
externalIpAddress: string;
|
|
3594
|
+
/**
|
|
3595
|
+
* The hostname of the node (string).
|
|
3596
|
+
*/
|
|
2406
3597
|
hostname: string;
|
|
2407
3598
|
/**
|
|
2408
3599
|
* (Computed) The ID of the resource. Same as `clusterId` (string)
|
|
2409
3600
|
*/
|
|
2410
3601
|
id: string;
|
|
3602
|
+
/**
|
|
3603
|
+
* The private IP address of the node (string).
|
|
3604
|
+
*/
|
|
2411
3605
|
ipAddress: string;
|
|
2412
3606
|
/**
|
|
2413
3607
|
* Labels of the resource
|
|
@@ -2415,13 +3609,37 @@ export interface ClusterSyncNode {
|
|
|
2415
3609
|
labels: {
|
|
2416
3610
|
[key: string]: any;
|
|
2417
3611
|
};
|
|
3612
|
+
/**
|
|
3613
|
+
* The name of the node (string).
|
|
3614
|
+
*/
|
|
2418
3615
|
name: string;
|
|
3616
|
+
/**
|
|
3617
|
+
* The Node Pool ID of the node (string).
|
|
3618
|
+
*/
|
|
2419
3619
|
nodePoolId: string;
|
|
3620
|
+
/**
|
|
3621
|
+
* The Node Template ID of the node (string).
|
|
3622
|
+
*/
|
|
2420
3623
|
nodeTemplateId: string;
|
|
3624
|
+
/**
|
|
3625
|
+
* The Provider ID of the node (string).
|
|
3626
|
+
*/
|
|
2421
3627
|
providerId: string;
|
|
3628
|
+
/**
|
|
3629
|
+
* The requested hostname (string).
|
|
3630
|
+
*/
|
|
2422
3631
|
requestedHostname: string;
|
|
3632
|
+
/**
|
|
3633
|
+
* Roles of the node. `controlplane`, `etcd` and `worker`. (list)
|
|
3634
|
+
*/
|
|
2423
3635
|
roles: string[];
|
|
3636
|
+
/**
|
|
3637
|
+
* The user to connect to the node (string).
|
|
3638
|
+
*/
|
|
2424
3639
|
sshUser: string;
|
|
3640
|
+
/**
|
|
3641
|
+
* General information about the node, such as kernel version, kubelet and kube-proxy version, Docker version (if used), and OS name.
|
|
3642
|
+
*/
|
|
2425
3643
|
systemInfo: {
|
|
2426
3644
|
[key: string]: any;
|
|
2427
3645
|
};
|
|
@@ -2534,6 +3752,9 @@ export interface ClusterTemplateTemplateRevisionClusterConfig {
|
|
|
2534
3752
|
}
|
|
2535
3753
|
export interface ClusterTemplateTemplateRevisionClusterConfigClusterAuthEndpoint {
|
|
2536
3754
|
caCerts?: string;
|
|
3755
|
+
/**
|
|
3756
|
+
* Enable cluster template revision. Default `true` (bool)
|
|
3757
|
+
*/
|
|
2537
3758
|
enabled?: boolean;
|
|
2538
3759
|
fqdn?: string;
|
|
2539
3760
|
}
|
|
@@ -3132,6 +4353,9 @@ export interface ClusterTemplateTemplateRevisionClusterConfigRkeConfigServicesEt
|
|
|
3132
4353
|
uid?: number;
|
|
3133
4354
|
}
|
|
3134
4355
|
export interface ClusterTemplateTemplateRevisionClusterConfigRkeConfigServicesEtcdBackupConfig {
|
|
4356
|
+
/**
|
|
4357
|
+
* Enable cluster template revision. Default `true` (bool)
|
|
4358
|
+
*/
|
|
3135
4359
|
enabled?: boolean;
|
|
3136
4360
|
intervalHours?: number;
|
|
3137
4361
|
retention?: number;
|
|
@@ -3197,6 +4421,9 @@ export interface ClusterTemplateTemplateRevisionClusterConfigRkeConfigServicesKu
|
|
|
3197
4421
|
}
|
|
3198
4422
|
export interface ClusterTemplateTemplateRevisionClusterConfigRkeConfigServicesKubeApiAuditLog {
|
|
3199
4423
|
configuration: outputs.ClusterTemplateTemplateRevisionClusterConfigRkeConfigServicesKubeApiAuditLogConfiguration;
|
|
4424
|
+
/**
|
|
4425
|
+
* Enable cluster template revision. Default `true` (bool)
|
|
4426
|
+
*/
|
|
3200
4427
|
enabled?: boolean;
|
|
3201
4428
|
}
|
|
3202
4429
|
export interface ClusterTemplateTemplateRevisionClusterConfigRkeConfigServicesKubeApiAuditLogConfiguration {
|
|
@@ -3209,10 +4436,16 @@ export interface ClusterTemplateTemplateRevisionClusterConfigRkeConfigServicesKu
|
|
|
3209
4436
|
}
|
|
3210
4437
|
export interface ClusterTemplateTemplateRevisionClusterConfigRkeConfigServicesKubeApiEventRateLimit {
|
|
3211
4438
|
configuration: string;
|
|
4439
|
+
/**
|
|
4440
|
+
* Enable cluster template revision. Default `true` (bool)
|
|
4441
|
+
*/
|
|
3212
4442
|
enabled?: boolean;
|
|
3213
4443
|
}
|
|
3214
4444
|
export interface ClusterTemplateTemplateRevisionClusterConfigRkeConfigServicesKubeApiSecretsEncryptionConfig {
|
|
3215
4445
|
customConfig?: string;
|
|
4446
|
+
/**
|
|
4447
|
+
* Enable cluster template revision. Default `true` (bool)
|
|
4448
|
+
*/
|
|
3216
4449
|
enabled?: boolean;
|
|
3217
4450
|
}
|
|
3218
4451
|
export interface ClusterTemplateTemplateRevisionClusterConfigRkeConfigServicesKubeController {
|
|
@@ -3290,6 +4523,9 @@ export interface ClusterV2AgentEnvVar {
|
|
|
3290
4523
|
* The name of the cluster.
|
|
3291
4524
|
*/
|
|
3292
4525
|
name: string;
|
|
4526
|
+
/**
|
|
4527
|
+
* The taint value.
|
|
4528
|
+
*/
|
|
3293
4529
|
value: string;
|
|
3294
4530
|
}
|
|
3295
4531
|
export interface ClusterV2ClusterAgentDeploymentCustomization {
|
|
@@ -3307,10 +4543,25 @@ export interface ClusterV2ClusterAgentDeploymentCustomization {
|
|
|
3307
4543
|
overrideResourceRequirements?: outputs.ClusterV2ClusterAgentDeploymentCustomizationOverrideResourceRequirement[];
|
|
3308
4544
|
}
|
|
3309
4545
|
export interface ClusterV2ClusterAgentDeploymentCustomizationAppendToleration {
|
|
4546
|
+
/**
|
|
4547
|
+
* The taint effect. Default: `\"NoExecute\"`.
|
|
4548
|
+
*/
|
|
3310
4549
|
effect?: string;
|
|
4550
|
+
/**
|
|
4551
|
+
* Key is the name of the key of the item to retrieve.
|
|
4552
|
+
*/
|
|
3311
4553
|
key: string;
|
|
4554
|
+
/**
|
|
4555
|
+
* Operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
|
|
4556
|
+
*/
|
|
3312
4557
|
operator?: string;
|
|
4558
|
+
/**
|
|
4559
|
+
* The number of seconds a pod will stay bound to a node with a matching taint.
|
|
4560
|
+
*/
|
|
3313
4561
|
seconds: number;
|
|
4562
|
+
/**
|
|
4563
|
+
* The taint value.
|
|
4564
|
+
*/
|
|
3314
4565
|
value?: string;
|
|
3315
4566
|
}
|
|
3316
4567
|
export interface ClusterV2ClusterAgentDeploymentCustomizationOverrideResourceRequirement {
|
|
@@ -3338,14 +4589,29 @@ export interface ClusterV2ClusterRegistrationToken {
|
|
|
3338
4589
|
annotations: {
|
|
3339
4590
|
[key: string]: any;
|
|
3340
4591
|
};
|
|
4592
|
+
/**
|
|
4593
|
+
* Cluster ID.
|
|
4594
|
+
*/
|
|
3341
4595
|
clusterId: string;
|
|
4596
|
+
/**
|
|
4597
|
+
* Command to execute in an imported k8s cluster.
|
|
4598
|
+
*/
|
|
3342
4599
|
command: string;
|
|
3343
4600
|
/**
|
|
3344
4601
|
* (Computed, string) The ID of the resource.
|
|
3345
4602
|
*/
|
|
3346
4603
|
id: string;
|
|
4604
|
+
/**
|
|
4605
|
+
* Insecure command to execute in an imported k8s cluster.
|
|
4606
|
+
*/
|
|
3347
4607
|
insecureCommand: string;
|
|
4608
|
+
/**
|
|
4609
|
+
* Insecure node command to execute in an imported k8s cluster.
|
|
4610
|
+
*/
|
|
3348
4611
|
insecureNodeCommand: string;
|
|
4612
|
+
/**
|
|
4613
|
+
* Insecure windows command to execute in an imported k8s cluster.
|
|
4614
|
+
*/
|
|
3349
4615
|
insecureWindowsNodeCommand: string;
|
|
3350
4616
|
/**
|
|
3351
4617
|
* Labels for the Cluster.
|
|
@@ -3353,13 +4619,25 @@ export interface ClusterV2ClusterRegistrationToken {
|
|
|
3353
4619
|
labels: {
|
|
3354
4620
|
[key: string]: any;
|
|
3355
4621
|
};
|
|
4622
|
+
/**
|
|
4623
|
+
* K8s manifest url to execute with `kubectl` to import an existing k8s cluster.
|
|
4624
|
+
*/
|
|
3356
4625
|
manifestUrl: string;
|
|
3357
4626
|
/**
|
|
3358
4627
|
* The name of the cluster.
|
|
3359
4628
|
*/
|
|
3360
4629
|
name: string;
|
|
4630
|
+
/**
|
|
4631
|
+
* Node command to execute in Linux nodes for custom k8s cluster.
|
|
4632
|
+
*/
|
|
3361
4633
|
nodeCommand: string;
|
|
4634
|
+
/**
|
|
4635
|
+
* Token for cluster registration token object.
|
|
4636
|
+
*/
|
|
3362
4637
|
token: string;
|
|
4638
|
+
/**
|
|
4639
|
+
* Node command to execute in Windows nodes for custom k8s cluster.
|
|
4640
|
+
*/
|
|
3363
4641
|
windowsNodeCommand: string;
|
|
3364
4642
|
}
|
|
3365
4643
|
export interface ClusterV2FleetAgentDeploymentCustomization {
|
|
@@ -3377,10 +4655,25 @@ export interface ClusterV2FleetAgentDeploymentCustomization {
|
|
|
3377
4655
|
overrideResourceRequirements?: outputs.ClusterV2FleetAgentDeploymentCustomizationOverrideResourceRequirement[];
|
|
3378
4656
|
}
|
|
3379
4657
|
export interface ClusterV2FleetAgentDeploymentCustomizationAppendToleration {
|
|
4658
|
+
/**
|
|
4659
|
+
* The taint effect. Default: `\"NoExecute\"`.
|
|
4660
|
+
*/
|
|
3380
4661
|
effect?: string;
|
|
4662
|
+
/**
|
|
4663
|
+
* Key is the name of the key of the item to retrieve.
|
|
4664
|
+
*/
|
|
3381
4665
|
key: string;
|
|
4666
|
+
/**
|
|
4667
|
+
* Operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
|
|
4668
|
+
*/
|
|
3382
4669
|
operator?: string;
|
|
4670
|
+
/**
|
|
4671
|
+
* The number of seconds a pod will stay bound to a node with a matching taint.
|
|
4672
|
+
*/
|
|
3383
4673
|
seconds: number;
|
|
4674
|
+
/**
|
|
4675
|
+
* The taint value.
|
|
4676
|
+
*/
|
|
3384
4677
|
value?: string;
|
|
3385
4678
|
}
|
|
3386
4679
|
export interface ClusterV2FleetAgentDeploymentCustomizationOverrideResourceRequirement {
|
|
@@ -3402,8 +4695,17 @@ export interface ClusterV2FleetAgentDeploymentCustomizationOverrideResourceRequi
|
|
|
3402
4695
|
memoryRequest?: string;
|
|
3403
4696
|
}
|
|
3404
4697
|
export interface ClusterV2LocalAuthEndpoint {
|
|
4698
|
+
/**
|
|
4699
|
+
* CA certs for the authorized cluster endpoint. It is only needed if there is a load balancer in front of the downstream cluster that is using an untrusted certificate. If you have a valid certificate, then nothing needs to be added to the CA Certificates field.
|
|
4700
|
+
*/
|
|
3405
4701
|
caCerts?: string;
|
|
4702
|
+
/**
|
|
4703
|
+
* If `enabled` is set to true, nodes will be drained before upgrade.
|
|
4704
|
+
*/
|
|
3406
4705
|
enabled?: boolean;
|
|
4706
|
+
/**
|
|
4707
|
+
* FQDN for the authorized cluster endpoint. If one is entered, it should point to the downstream cluster.
|
|
4708
|
+
*/
|
|
3407
4709
|
fqdn?: string;
|
|
3408
4710
|
}
|
|
3409
4711
|
export interface ClusterV2RkeConfig {
|
|
@@ -3535,8 +4837,17 @@ export interface ClusterV2RkeConfigEtcdSnapshotRestore {
|
|
|
3535
4837
|
restoreRkeConfig?: string;
|
|
3536
4838
|
}
|
|
3537
4839
|
export interface ClusterV2RkeConfigLocalAuthEndpoint {
|
|
4840
|
+
/**
|
|
4841
|
+
* CA certs for the authorized cluster endpoint. It is only needed if there is a load balancer in front of the downstream cluster that is using an untrusted certificate. If you have a valid certificate, then nothing needs to be added to the CA Certificates field.
|
|
4842
|
+
*/
|
|
3538
4843
|
caCerts?: string;
|
|
4844
|
+
/**
|
|
4845
|
+
* If `enabled` is set to true, nodes will be drained before upgrade.
|
|
4846
|
+
*/
|
|
3539
4847
|
enabled?: boolean;
|
|
4848
|
+
/**
|
|
4849
|
+
* FQDN for the authorized cluster endpoint. If one is entered, it should point to the downstream cluster.
|
|
4850
|
+
*/
|
|
3540
4851
|
fqdn?: string;
|
|
3541
4852
|
}
|
|
3542
4853
|
export interface ClusterV2RkeConfigMachinePool {
|
|
@@ -3658,8 +4969,17 @@ export interface ClusterV2RkeConfigMachinePoolRollingUpdate {
|
|
|
3658
4969
|
maxUnavailable?: string;
|
|
3659
4970
|
}
|
|
3660
4971
|
export interface ClusterV2RkeConfigMachinePoolTaint {
|
|
4972
|
+
/**
|
|
4973
|
+
* The taint effect. Default: `\"NoExecute\"`.
|
|
4974
|
+
*/
|
|
3661
4975
|
effect?: string;
|
|
4976
|
+
/**
|
|
4977
|
+
* Key is the name of the key of the item to retrieve.
|
|
4978
|
+
*/
|
|
3662
4979
|
key: string;
|
|
4980
|
+
/**
|
|
4981
|
+
* The taint value.
|
|
4982
|
+
*/
|
|
3663
4983
|
value: string;
|
|
3664
4984
|
}
|
|
3665
4985
|
export interface ClusterV2RkeConfigMachineSelectorConfig {
|
|
@@ -3969,20 +5289,53 @@ export interface ClusterV2RkeConfigUpgradeStrategyWorkerDrainOptions {
|
|
|
3969
5289
|
timeout: number;
|
|
3970
5290
|
}
|
|
3971
5291
|
export interface EtcdBackupBackupConfig {
|
|
5292
|
+
/**
|
|
5293
|
+
* Enable etcd backup (bool)
|
|
5294
|
+
*/
|
|
3972
5295
|
enabled?: boolean;
|
|
5296
|
+
/**
|
|
5297
|
+
* Interval hours for etcd backup. Default `12` (int)
|
|
5298
|
+
*/
|
|
3973
5299
|
intervalHours?: number;
|
|
5300
|
+
/**
|
|
5301
|
+
* Retention for etcd backup. Default `6` (int)
|
|
5302
|
+
*/
|
|
3974
5303
|
retention?: number;
|
|
5304
|
+
/**
|
|
5305
|
+
* S3 config options for etcd backup. Valid for `imported` and `rke` clusters. (list maxitems:1)
|
|
5306
|
+
*/
|
|
3975
5307
|
s3BackupConfig?: outputs.EtcdBackupBackupConfigS3BackupConfig;
|
|
3976
5308
|
safeTimestamp?: boolean;
|
|
3977
5309
|
timeout: number;
|
|
3978
5310
|
}
|
|
3979
5311
|
export interface EtcdBackupBackupConfigS3BackupConfig {
|
|
5312
|
+
/**
|
|
5313
|
+
* Access key for S3 service (string)
|
|
5314
|
+
*/
|
|
3980
5315
|
accessKey?: string;
|
|
5316
|
+
/**
|
|
5317
|
+
* Bucket name for S3 service (string)
|
|
5318
|
+
*/
|
|
3981
5319
|
bucketName: string;
|
|
5320
|
+
/**
|
|
5321
|
+
* Base64 encoded custom CA for S3 service. Use filebase64(<FILE>) for encoding file. Available from Rancher v2.2.5 (string)
|
|
5322
|
+
*/
|
|
3982
5323
|
customCa?: string;
|
|
5324
|
+
/**
|
|
5325
|
+
* Endpoint for S3 service (string)
|
|
5326
|
+
*/
|
|
3983
5327
|
endpoint: string;
|
|
5328
|
+
/**
|
|
5329
|
+
* Folder for S3 service. Available from Rancher v2.2.7 (string)
|
|
5330
|
+
*/
|
|
3984
5331
|
folder?: string;
|
|
5332
|
+
/**
|
|
5333
|
+
* Region for S3 service (string)
|
|
5334
|
+
*/
|
|
3985
5335
|
region?: string;
|
|
5336
|
+
/**
|
|
5337
|
+
* Secret key for S3 service (string)
|
|
5338
|
+
*/
|
|
3986
5339
|
secretKey?: string;
|
|
3987
5340
|
}
|
|
3988
5341
|
export interface GetClusterAksConfig {
|
|
@@ -8246,20 +9599,53 @@ export interface GetRoleTemplateRule {
|
|
|
8246
9599
|
verbs?: string[];
|
|
8247
9600
|
}
|
|
8248
9601
|
export interface GlobalDnsProviderAlidnsConfig {
|
|
9602
|
+
/**
|
|
9603
|
+
* The AWS Access key (string)
|
|
9604
|
+
*/
|
|
8249
9605
|
accessKey: string;
|
|
9606
|
+
/**
|
|
9607
|
+
* The AWS Secret key (string)
|
|
9608
|
+
*/
|
|
8250
9609
|
secretKey: string;
|
|
8251
9610
|
}
|
|
8252
9611
|
export interface GlobalDnsProviderCloudflareConfig {
|
|
9612
|
+
/**
|
|
9613
|
+
* The CloudFlare API Email (string)
|
|
9614
|
+
*/
|
|
8253
9615
|
apiEmail: string;
|
|
9616
|
+
/**
|
|
9617
|
+
* The CloudFlare API Key (string)
|
|
9618
|
+
*/
|
|
8254
9619
|
apiKey: string;
|
|
9620
|
+
/**
|
|
9621
|
+
* CloudFlare Proxy Setting. Default: `false` (bool)
|
|
9622
|
+
*/
|
|
8255
9623
|
proxySetting?: boolean;
|
|
8256
9624
|
}
|
|
8257
9625
|
export interface GlobalDnsProviderRoute53Config {
|
|
9626
|
+
/**
|
|
9627
|
+
* The AWS Access key (string)
|
|
9628
|
+
*/
|
|
8258
9629
|
accessKey: string;
|
|
9630
|
+
/**
|
|
9631
|
+
* The AWS credentials path. Default: `"/.aws"` (string)
|
|
9632
|
+
*/
|
|
8259
9633
|
credentialsPath?: string;
|
|
9634
|
+
/**
|
|
9635
|
+
* The AWS Region. Default: `"us-west-2"` (string)
|
|
9636
|
+
*/
|
|
8260
9637
|
region?: string;
|
|
9638
|
+
/**
|
|
9639
|
+
* The AWS Role ARN (string)
|
|
9640
|
+
*/
|
|
8261
9641
|
roleArn?: string;
|
|
9642
|
+
/**
|
|
9643
|
+
* The AWS Secret key (string)
|
|
9644
|
+
*/
|
|
8262
9645
|
secretKey: string;
|
|
9646
|
+
/**
|
|
9647
|
+
* The Route53 zone type `public, private`. Default: `"public"` (string)
|
|
9648
|
+
*/
|
|
8263
9649
|
zoneType?: string;
|
|
8264
9650
|
}
|
|
8265
9651
|
export interface GlobalRoleRule {
|
|
@@ -8753,47 +10139,176 @@ export interface MachineConfigV2LinodeConfig {
|
|
|
8753
10139
|
uaPrefix?: string;
|
|
8754
10140
|
}
|
|
8755
10141
|
export interface MachineConfigV2OpenstackConfig {
|
|
10142
|
+
/**
|
|
10143
|
+
* OpenStack active timeout Default `200` (string)
|
|
10144
|
+
*/
|
|
8756
10145
|
activeTimeout?: string;
|
|
10146
|
+
/**
|
|
10147
|
+
* OpenStack application credential id. Conflicts with `applicationCredentialName` (string)
|
|
10148
|
+
*/
|
|
8757
10149
|
applicationCredentialId?: string;
|
|
10150
|
+
/**
|
|
10151
|
+
* OpenStack application credential name. Conflicts with `applicationCredentialId` (string)
|
|
10152
|
+
*/
|
|
8758
10153
|
applicationCredentialName?: string;
|
|
10154
|
+
/**
|
|
10155
|
+
* OpenStack application credential secret (string)
|
|
10156
|
+
*/
|
|
8759
10157
|
applicationCredentialSecret?: string;
|
|
10158
|
+
/**
|
|
10159
|
+
* OpenStack authentication URL (string)
|
|
10160
|
+
*/
|
|
8760
10161
|
authUrl: string;
|
|
10162
|
+
/**
|
|
10163
|
+
* OpenStack availability zone (string)
|
|
10164
|
+
*/
|
|
8761
10165
|
availabilityZone: string;
|
|
10166
|
+
/**
|
|
10167
|
+
* Enable booting from volume. Default is `false` (bool)
|
|
10168
|
+
*/
|
|
8762
10169
|
bootFromVolume?: boolean;
|
|
10170
|
+
/**
|
|
10171
|
+
* CA certificate bundle to verify against (string)
|
|
10172
|
+
*/
|
|
8763
10173
|
cacert?: string;
|
|
10174
|
+
/**
|
|
10175
|
+
* Enables the OpenStack config drive for the instance. Default `false` (bool)
|
|
10176
|
+
*/
|
|
8764
10177
|
configDrive?: boolean;
|
|
10178
|
+
/**
|
|
10179
|
+
* OpenStack domain ID. Identity v3 only. Conflicts with `domainName` (string)
|
|
10180
|
+
*/
|
|
8765
10181
|
domainId?: string;
|
|
10182
|
+
/**
|
|
10183
|
+
* OpenStack domain name. Identity v3 only. Conflicts with `domainId` (string)
|
|
10184
|
+
*/
|
|
8766
10185
|
domainName?: string;
|
|
10186
|
+
/**
|
|
10187
|
+
* OpenStack endpoint type. adminURL, internalURL or publicURL (string)
|
|
10188
|
+
*/
|
|
8767
10189
|
endpointType?: string;
|
|
10190
|
+
/**
|
|
10191
|
+
* OpenStack flavor id to use for the instance. Conflicts with `flavorName` (string)
|
|
10192
|
+
*/
|
|
8768
10193
|
flavorId?: string;
|
|
10194
|
+
/**
|
|
10195
|
+
* OpenStack flavor name to use for the instance. Conflicts with `flavorId` (string)
|
|
10196
|
+
*/
|
|
8769
10197
|
flavorName?: string;
|
|
10198
|
+
/**
|
|
10199
|
+
* OpenStack floating IP pool to get an IP from to assign to the instance (string)
|
|
10200
|
+
*/
|
|
8770
10201
|
floatingIpPool?: string;
|
|
10202
|
+
/**
|
|
10203
|
+
* OpenStack image id to use for the instance. Conflicts with `imageName` (string)
|
|
10204
|
+
*/
|
|
8771
10205
|
imageId?: string;
|
|
10206
|
+
/**
|
|
10207
|
+
* OpenStack image name to use for the instance. Conflicts with `imageId` (string)
|
|
10208
|
+
*/
|
|
8772
10209
|
imageName?: string;
|
|
10210
|
+
/**
|
|
10211
|
+
* Disable TLS credential checking. Default `false` (bool)
|
|
10212
|
+
*/
|
|
8773
10213
|
insecure?: boolean;
|
|
10214
|
+
/**
|
|
10215
|
+
* OpenStack version of IP address assigned for the machine Default `4` (string)
|
|
10216
|
+
*/
|
|
8774
10217
|
ipVersion?: string;
|
|
10218
|
+
/**
|
|
10219
|
+
* OpenStack keypair to use to SSH to the instance (string)
|
|
10220
|
+
*/
|
|
8775
10221
|
keypairName?: string;
|
|
10222
|
+
/**
|
|
10223
|
+
* OpenStack network id the machine will be connected on. Conflicts with `netName` (string)
|
|
10224
|
+
*/
|
|
8776
10225
|
netId?: string;
|
|
10226
|
+
/**
|
|
10227
|
+
* OpenStack network name the machine will be connected on. Conflicts with `netId` (string)
|
|
10228
|
+
*/
|
|
8777
10229
|
netName?: string;
|
|
10230
|
+
/**
|
|
10231
|
+
* Use the nova networking services instead of neutron (string)
|
|
10232
|
+
*/
|
|
8778
10233
|
novaNetwork?: boolean;
|
|
10234
|
+
/**
|
|
10235
|
+
* OpenStack password. Mandatory on Rancher v2.0.x and v2.1.x. Use `rancher2.CloudCredential` from Rancher v2.2.x (string)
|
|
10236
|
+
*/
|
|
8779
10237
|
password?: string;
|
|
10238
|
+
/**
|
|
10239
|
+
* Private key content to use for SSH (string)
|
|
10240
|
+
*/
|
|
8780
10241
|
privateKeyFile?: string;
|
|
10242
|
+
/**
|
|
10243
|
+
* OpenStack region name (string)
|
|
10244
|
+
*/
|
|
8781
10245
|
region: string;
|
|
10246
|
+
/**
|
|
10247
|
+
* OpenStack comma separated security groups for the machine (string)
|
|
10248
|
+
*/
|
|
8782
10249
|
secGroups?: string;
|
|
10250
|
+
/**
|
|
10251
|
+
* If using a non-B2D image you can specify the ssh port. Default `22` (string)
|
|
10252
|
+
*/
|
|
8783
10253
|
sshPort?: string;
|
|
10254
|
+
/**
|
|
10255
|
+
* If using a non-B2D image you can specify the ssh user. Default `docker`. (string)
|
|
10256
|
+
*/
|
|
8784
10257
|
sshUser?: string;
|
|
10258
|
+
/**
|
|
10259
|
+
* OpenStack tenant domain id. Conflicts with `tenantDomainName` (string)
|
|
10260
|
+
*/
|
|
8785
10261
|
tenantDomainId?: string;
|
|
10262
|
+
/**
|
|
10263
|
+
* OpenStack tenant domain name. Conflicts with `tenantDomainId` (string)
|
|
10264
|
+
*/
|
|
8786
10265
|
tenantDomainName?: string;
|
|
10266
|
+
/**
|
|
10267
|
+
* OpenStack tenant id. Conflicts with `tenantName` (string)
|
|
10268
|
+
*/
|
|
8787
10269
|
tenantId?: string;
|
|
10270
|
+
/**
|
|
10271
|
+
* OpenStack tenant name. Conflicts with `tenantId` (string)
|
|
10272
|
+
*/
|
|
8788
10273
|
tenantName?: string;
|
|
10274
|
+
/**
|
|
10275
|
+
* File containing an openstack userdata script (string)
|
|
10276
|
+
*/
|
|
8789
10277
|
userDataFile?: string;
|
|
10278
|
+
/**
|
|
10279
|
+
* OpenStack user domain id. Conflicts with `userDomainName` (string)
|
|
10280
|
+
*/
|
|
8790
10281
|
userDomainId?: string;
|
|
10282
|
+
/**
|
|
10283
|
+
* OpenStack user domain name. Conflicts with `userDomainId` (string)
|
|
10284
|
+
*/
|
|
8791
10285
|
userDomainName?: string;
|
|
10286
|
+
/**
|
|
10287
|
+
* OpenStack username (string)
|
|
10288
|
+
*/
|
|
8792
10289
|
username?: string;
|
|
10290
|
+
/**
|
|
10291
|
+
* OpenStack volume device path (attaching). Applicable only when `bootFromVolume` is `true`. Omit for auto `/dev/vdb`. (string)
|
|
10292
|
+
* > **Note:**: `Required+` denotes that either the _name or _id is required but you cannot use both.
|
|
10293
|
+
* > **Note:**: `Required++` denotes that either the _name or _id is required unless `applicationCredentialId` is defined.
|
|
10294
|
+
* > **Note for OpenStack users:**: `keypairName` is required to be in the schema even if there are no references in rancher itself
|
|
10295
|
+
*/
|
|
8793
10296
|
volumeDevicePath?: string;
|
|
10297
|
+
/**
|
|
10298
|
+
* OpenStack volume id of existing volume. Applicable only when `bootFromVolume` is `true` (string)
|
|
10299
|
+
*/
|
|
8794
10300
|
volumeId?: string;
|
|
10301
|
+
/**
|
|
10302
|
+
* OpenStack volume name of existing volume. Applicable only when `bootFromVolume` is `true` (string)
|
|
10303
|
+
*/
|
|
8795
10304
|
volumeName?: string;
|
|
10305
|
+
/**
|
|
10306
|
+
* OpenStack volume size (GiB). Required when `bootFromVolume` is `true` (string)
|
|
10307
|
+
*/
|
|
8796
10308
|
volumeSize?: string;
|
|
10309
|
+
/**
|
|
10310
|
+
* OpenStack volume type. Required when `bootFromVolume` is `true` and openstack cloud does not have a default volume type (string)
|
|
10311
|
+
*/
|
|
8797
10312
|
volumeType?: string;
|
|
8798
10313
|
}
|
|
8799
10314
|
export interface MachineConfigV2VsphereConfig {
|
|
@@ -8991,33 +10506,98 @@ export interface MultiClusterAppUpgradeStrategyRollingUpdate {
|
|
|
8991
10506
|
interval?: number;
|
|
8992
10507
|
}
|
|
8993
10508
|
export interface NamespaceContainerResourceLimit {
|
|
10509
|
+
/**
|
|
10510
|
+
* Limit for limits cpu in namespace (string)
|
|
10511
|
+
*/
|
|
8994
10512
|
limitsCpu?: string;
|
|
10513
|
+
/**
|
|
10514
|
+
* Limit for limits memory in namespace (string)
|
|
10515
|
+
*/
|
|
8995
10516
|
limitsMemory?: string;
|
|
10517
|
+
/**
|
|
10518
|
+
* Limit for requests cpu in namespace (string)
|
|
10519
|
+
*/
|
|
8996
10520
|
requestsCpu?: string;
|
|
10521
|
+
/**
|
|
10522
|
+
* Limit for requests memory in namespace (string)
|
|
10523
|
+
*/
|
|
8997
10524
|
requestsMemory?: string;
|
|
8998
10525
|
}
|
|
8999
10526
|
export interface NamespaceResourceQuota {
|
|
10527
|
+
/**
|
|
10528
|
+
* Resource quota limit for namespace (list maxitems:1)
|
|
10529
|
+
*/
|
|
9000
10530
|
limit: outputs.NamespaceResourceQuotaLimit;
|
|
9001
10531
|
}
|
|
9002
10532
|
export interface NamespaceResourceQuotaLimit {
|
|
10533
|
+
/**
|
|
10534
|
+
* Limit for config maps in namespace (string)
|
|
10535
|
+
*/
|
|
9003
10536
|
configMaps?: string;
|
|
10537
|
+
/**
|
|
10538
|
+
* Limit for limits cpu in namespace (string)
|
|
10539
|
+
*/
|
|
9004
10540
|
limitsCpu?: string;
|
|
10541
|
+
/**
|
|
10542
|
+
* Limit for limits memory in namespace (string)
|
|
10543
|
+
*/
|
|
9005
10544
|
limitsMemory?: string;
|
|
10545
|
+
/**
|
|
10546
|
+
* Limit for persistent volume claims in namespace (string)
|
|
10547
|
+
*/
|
|
9006
10548
|
persistentVolumeClaims?: string;
|
|
10549
|
+
/**
|
|
10550
|
+
* Limit for pods in namespace (string)
|
|
10551
|
+
*/
|
|
9007
10552
|
pods?: string;
|
|
10553
|
+
/**
|
|
10554
|
+
* Limit for replication controllers in namespace (string)
|
|
10555
|
+
*/
|
|
9008
10556
|
replicationControllers?: string;
|
|
10557
|
+
/**
|
|
10558
|
+
* Limit for requests cpu in namespace (string)
|
|
10559
|
+
*/
|
|
9009
10560
|
requestsCpu?: string;
|
|
10561
|
+
/**
|
|
10562
|
+
* Limit for requests memory in namespace (string)
|
|
10563
|
+
*/
|
|
9010
10564
|
requestsMemory?: string;
|
|
10565
|
+
/**
|
|
10566
|
+
* Limit for requests storage in namespace (string)
|
|
10567
|
+
*/
|
|
9011
10568
|
requestsStorage?: string;
|
|
10569
|
+
/**
|
|
10570
|
+
* Limit for secrets in namespace (string)
|
|
10571
|
+
*/
|
|
9012
10572
|
secrets?: string;
|
|
9013
10573
|
services?: string;
|
|
10574
|
+
/**
|
|
10575
|
+
* Limit for services load balancers in namespace (string)
|
|
10576
|
+
*/
|
|
9014
10577
|
servicesLoadBalancers?: string;
|
|
10578
|
+
/**
|
|
10579
|
+
* Limit for services node ports in namespace (string)
|
|
10580
|
+
*
|
|
10581
|
+
* More info at [resource-quotas](https://rancher.com/docs/rancher/v2.x/en/k8s-in-rancher/projects-and-namespaces/resource-quotas/)
|
|
10582
|
+
*/
|
|
9015
10583
|
servicesNodePorts?: string;
|
|
9016
10584
|
}
|
|
9017
10585
|
export interface NodePoolNodeTaint {
|
|
10586
|
+
/**
|
|
10587
|
+
* Taint effect. Supported values : `"NoExecute" | "NoSchedule" | "PreferNoSchedule"` (string)
|
|
10588
|
+
*/
|
|
9018
10589
|
effect?: string;
|
|
10590
|
+
/**
|
|
10591
|
+
* Taint key (string)
|
|
10592
|
+
*/
|
|
9019
10593
|
key: string;
|
|
10594
|
+
/**
|
|
10595
|
+
* Taint time added (string)
|
|
10596
|
+
*/
|
|
9020
10597
|
timeAdded: string;
|
|
10598
|
+
/**
|
|
10599
|
+
* Taint value (string)
|
|
10600
|
+
*/
|
|
9021
10601
|
value: string;
|
|
9022
10602
|
}
|
|
9023
10603
|
export interface NodeTemplateAmazonec2Config {
|
|
@@ -9525,70 +11105,261 @@ export interface NodeTemplateLinodeConfig {
|
|
|
9525
11105
|
uaPrefix?: string;
|
|
9526
11106
|
}
|
|
9527
11107
|
export interface NodeTemplateNodeTaint {
|
|
11108
|
+
/**
|
|
11109
|
+
* Taint effect. Supported values : `"NoExecute" | "NoSchedule" | "PreferNoSchedule"` (string)
|
|
11110
|
+
*/
|
|
9528
11111
|
effect?: string;
|
|
11112
|
+
/**
|
|
11113
|
+
* Taint key (string)
|
|
11114
|
+
*/
|
|
9529
11115
|
key: string;
|
|
11116
|
+
/**
|
|
11117
|
+
* Taint time added (string)
|
|
11118
|
+
*/
|
|
9530
11119
|
timeAdded: string;
|
|
11120
|
+
/**
|
|
11121
|
+
* Taint value (string)
|
|
11122
|
+
*/
|
|
9531
11123
|
value: string;
|
|
9532
11124
|
}
|
|
9533
11125
|
export interface NodeTemplateOpennebulaConfig {
|
|
11126
|
+
/**
|
|
11127
|
+
* Size of the Volatile disk in MB - only for b2d (string)
|
|
11128
|
+
*/
|
|
9534
11129
|
b2dSize?: string;
|
|
11130
|
+
/**
|
|
11131
|
+
* CPU value for the VM (string)
|
|
11132
|
+
*/
|
|
9535
11133
|
cpu?: string;
|
|
11134
|
+
/**
|
|
11135
|
+
* Dev prefix to use for the images. E.g.: 'vd', 'sd', 'hd' (string)
|
|
11136
|
+
*/
|
|
9536
11137
|
devPrefix?: string;
|
|
11138
|
+
/**
|
|
11139
|
+
* VNC is enabled by default. Disable it with this flag (bool)
|
|
11140
|
+
*/
|
|
9537
11141
|
disableVnc?: boolean;
|
|
11142
|
+
/**
|
|
11143
|
+
* Size of the disk for the VM in MB (string)
|
|
11144
|
+
*/
|
|
9538
11145
|
diskResize?: string;
|
|
11146
|
+
/**
|
|
11147
|
+
* OpenStack image id to use for the instance. Conflicts with `imageName` (string)
|
|
11148
|
+
*/
|
|
9539
11149
|
imageId?: string;
|
|
11150
|
+
/**
|
|
11151
|
+
* OpenStack image name to use for the instance. Conflicts with `imageId` (string)
|
|
11152
|
+
*/
|
|
9540
11153
|
imageName?: string;
|
|
11154
|
+
/**
|
|
11155
|
+
* Owner of the image to use as the VM OS (string)
|
|
11156
|
+
*/
|
|
9541
11157
|
imageOwner?: string;
|
|
11158
|
+
/**
|
|
11159
|
+
* Size of the memory for the VM in MB (string)
|
|
11160
|
+
*/
|
|
9542
11161
|
memory?: string;
|
|
11162
|
+
/**
|
|
11163
|
+
* Opennebula network ID to connect the machine to. Conflicts with `networkName` (string)
|
|
11164
|
+
*/
|
|
9543
11165
|
networkId?: string;
|
|
11166
|
+
/**
|
|
11167
|
+
* Opennebula network to connect the machine to. Conflicts with `networkId` (string)
|
|
11168
|
+
*/
|
|
9544
11169
|
networkName?: string;
|
|
11170
|
+
/**
|
|
11171
|
+
* Opennebula user ID of the Network to connect the machine to (string)
|
|
11172
|
+
*/
|
|
9545
11173
|
networkOwner?: string;
|
|
11174
|
+
/**
|
|
11175
|
+
* vSphere password. Mandatory on Rancher v2.0.x and v2.1.x. Use `rancher2.CloudCredential` from Rancher v2.2.x (string)
|
|
11176
|
+
*/
|
|
9546
11177
|
password: string;
|
|
11178
|
+
/**
|
|
11179
|
+
* If using a non-B2D image you can specify the ssh user. Default `docker`. From Rancher v2.3.3 (string)
|
|
11180
|
+
*/
|
|
9547
11181
|
sshUser?: string;
|
|
11182
|
+
/**
|
|
11183
|
+
* Opennebula template ID to use. Conflicts with `templateName` (string)
|
|
11184
|
+
*/
|
|
9548
11185
|
templateId?: string;
|
|
11186
|
+
/**
|
|
11187
|
+
* Name of the Opennbula template to use. Conflicts with `templateId` (string)
|
|
11188
|
+
*/
|
|
9549
11189
|
templateName?: string;
|
|
11190
|
+
/**
|
|
11191
|
+
* Set the user for the XML-RPC API authentication (string)
|
|
11192
|
+
*/
|
|
9550
11193
|
user: string;
|
|
11194
|
+
/**
|
|
11195
|
+
* VCPUs for the VM (string)
|
|
11196
|
+
*
|
|
11197
|
+
* > **Note:**: `Required*` denotes that one of imageName / imageId or templateName / templateId is required but you cannot combine them.
|
|
11198
|
+
*/
|
|
9551
11199
|
vcpu?: string;
|
|
11200
|
+
/**
|
|
11201
|
+
* Set the url for the Opennebula XML-RPC API (string)
|
|
11202
|
+
*/
|
|
9552
11203
|
xmlRpcUrl: string;
|
|
9553
11204
|
}
|
|
9554
11205
|
export interface NodeTemplateOpenstackConfig {
|
|
11206
|
+
/**
|
|
11207
|
+
* OpenStack active timeout Default `200` (string)
|
|
11208
|
+
*/
|
|
9555
11209
|
activeTimeout?: string;
|
|
11210
|
+
/**
|
|
11211
|
+
* OpenStack application credential id. Conflicts with `applicationCredentialName` (string)
|
|
11212
|
+
*/
|
|
9556
11213
|
applicationCredentialId?: string;
|
|
11214
|
+
/**
|
|
11215
|
+
* OpenStack application credential name. Conflicts with `applicationCredentialId` (string)
|
|
11216
|
+
*/
|
|
9557
11217
|
applicationCredentialName?: string;
|
|
11218
|
+
/**
|
|
11219
|
+
* OpenStack application credential secret (string)
|
|
11220
|
+
*/
|
|
9558
11221
|
applicationCredentialSecret?: string;
|
|
11222
|
+
/**
|
|
11223
|
+
* OpenStack authentication URL (string)
|
|
11224
|
+
*/
|
|
9559
11225
|
authUrl: string;
|
|
11226
|
+
/**
|
|
11227
|
+
* OpenStack availability zone (string)
|
|
11228
|
+
*/
|
|
9560
11229
|
availabilityZone: string;
|
|
11230
|
+
/**
|
|
11231
|
+
* Enable booting from volume. Default is `false` (bool)
|
|
11232
|
+
*/
|
|
9561
11233
|
bootFromVolume?: boolean;
|
|
11234
|
+
/**
|
|
11235
|
+
* CA certificate bundle to verify against (string)
|
|
11236
|
+
*/
|
|
9562
11237
|
cacert?: string;
|
|
11238
|
+
/**
|
|
11239
|
+
* Enables the OpenStack config drive for the instance. Default `false` (bool)
|
|
11240
|
+
*/
|
|
9563
11241
|
configDrive?: boolean;
|
|
11242
|
+
/**
|
|
11243
|
+
* OpenStack domain ID. Identity v3 only. Conflicts with `domainName` (string)
|
|
11244
|
+
*/
|
|
9564
11245
|
domainId?: string;
|
|
11246
|
+
/**
|
|
11247
|
+
* OpenStack domain name. Identity v3 only. Conflicts with `domainId` (string)
|
|
11248
|
+
*/
|
|
9565
11249
|
domainName?: string;
|
|
11250
|
+
/**
|
|
11251
|
+
* OpenStack endpoint type. adminURL, internalURL or publicURL (string)
|
|
11252
|
+
*/
|
|
9566
11253
|
endpointType?: string;
|
|
11254
|
+
/**
|
|
11255
|
+
* OpenStack flavor id to use for the instance. Conflicts with `flavorName` (string)
|
|
11256
|
+
*/
|
|
9567
11257
|
flavorId?: string;
|
|
11258
|
+
/**
|
|
11259
|
+
* OpenStack flavor name to use for the instance. Conflicts with `flavorId` (string)
|
|
11260
|
+
*/
|
|
9568
11261
|
flavorName?: string;
|
|
11262
|
+
/**
|
|
11263
|
+
* OpenStack floating IP pool to get an IP from to assign to the instance (string)
|
|
11264
|
+
*/
|
|
9569
11265
|
floatingIpPool?: string;
|
|
11266
|
+
/**
|
|
11267
|
+
* OpenStack image id to use for the instance. Conflicts with `imageName` (string)
|
|
11268
|
+
*/
|
|
9570
11269
|
imageId?: string;
|
|
11270
|
+
/**
|
|
11271
|
+
* OpenStack image name to use for the instance. Conflicts with `imageId` (string)
|
|
11272
|
+
*/
|
|
9571
11273
|
imageName?: string;
|
|
11274
|
+
/**
|
|
11275
|
+
* Disable TLS credential checking. Default `false` (bool)
|
|
11276
|
+
*/
|
|
9572
11277
|
insecure?: boolean;
|
|
11278
|
+
/**
|
|
11279
|
+
* OpenStack version of IP address assigned for the machine Default `4` (string)
|
|
11280
|
+
*/
|
|
9573
11281
|
ipVersion?: string;
|
|
11282
|
+
/**
|
|
11283
|
+
* OpenStack keypair to use to SSH to the instance (string)
|
|
11284
|
+
*/
|
|
9574
11285
|
keypairName?: string;
|
|
11286
|
+
/**
|
|
11287
|
+
* OpenStack network id the machine will be connected on. Conflicts with `netName` (string)
|
|
11288
|
+
*/
|
|
9575
11289
|
netId?: string;
|
|
11290
|
+
/**
|
|
11291
|
+
* OpenStack network name the machine will be connected on. Conflicts with `netId` (string)
|
|
11292
|
+
*/
|
|
9576
11293
|
netName?: string;
|
|
11294
|
+
/**
|
|
11295
|
+
* Use the nova networking services instead of neutron (string)
|
|
11296
|
+
*/
|
|
9577
11297
|
novaNetwork?: boolean;
|
|
11298
|
+
/**
|
|
11299
|
+
* vSphere password. Mandatory on Rancher v2.0.x and v2.1.x. Use `rancher2.CloudCredential` from Rancher v2.2.x (string)
|
|
11300
|
+
*/
|
|
9578
11301
|
password?: string;
|
|
11302
|
+
/**
|
|
11303
|
+
* Private key content to use for SSH (string)
|
|
11304
|
+
*/
|
|
9579
11305
|
privateKeyFile?: string;
|
|
11306
|
+
/**
|
|
11307
|
+
* AWS region. Default `eu-west-2` (string)
|
|
11308
|
+
*/
|
|
9580
11309
|
region: string;
|
|
11310
|
+
/**
|
|
11311
|
+
* OpenStack comma separated security groups for the machine (string)
|
|
11312
|
+
*/
|
|
9581
11313
|
secGroups?: string;
|
|
11314
|
+
/**
|
|
11315
|
+
* If using a non-B2D image you can specify the ssh port. Default `22`. From Rancher v2.3.3 (string)
|
|
11316
|
+
*/
|
|
9582
11317
|
sshPort?: string;
|
|
11318
|
+
/**
|
|
11319
|
+
* If using a non-B2D image you can specify the ssh user. Default `docker`. From Rancher v2.3.3 (string)
|
|
11320
|
+
*/
|
|
9583
11321
|
sshUser?: string;
|
|
11322
|
+
/**
|
|
11323
|
+
* OpenStack tenant id. Conflicts with `tenantName` (string)
|
|
11324
|
+
*/
|
|
9584
11325
|
tenantId?: string;
|
|
11326
|
+
/**
|
|
11327
|
+
* OpenStack tenant name. Conflicts with `tenantId` (string)
|
|
11328
|
+
*/
|
|
9585
11329
|
tenantName?: string;
|
|
11330
|
+
/**
|
|
11331
|
+
* File containing an openstack userdata script (string)
|
|
11332
|
+
*/
|
|
9586
11333
|
userDataFile?: string;
|
|
11334
|
+
/**
|
|
11335
|
+
* vSphere username. Mandatory on Rancher v2.0.x and v2.1.x. Use `rancher2.CloudCredential` from Rancher v2.2.x (string)
|
|
11336
|
+
*/
|
|
9587
11337
|
username?: string;
|
|
11338
|
+
/**
|
|
11339
|
+
* OpenStack volume device path (attaching). Applicable only when `bootFromVolume` is `true`. Omit for auto `/dev/vdb`. (string)
|
|
11340
|
+
*
|
|
11341
|
+
* > **Note:**: `Required*` denotes that either the _name or _id is required but you cannot use both.
|
|
11342
|
+
*
|
|
11343
|
+
* > **Note:**: `Required**` denotes that either the _name or _id is required unless `applicationCredentialId` is defined.
|
|
11344
|
+
*
|
|
11345
|
+
* > **Note for OpenStack users:**: `keypairName` is required to be in the schema even if there are no references in rancher itself
|
|
11346
|
+
*/
|
|
9588
11347
|
volumeDevicePath?: string;
|
|
11348
|
+
/**
|
|
11349
|
+
* OpenStack volume id of existing volume. Applicable only when `bootFromVolume` is `true` (string)
|
|
11350
|
+
*/
|
|
9589
11351
|
volumeId?: string;
|
|
11352
|
+
/**
|
|
11353
|
+
* OpenStack volume name of existing volume. Applicable only when `bootFromVolume` is `true` (string)
|
|
11354
|
+
*/
|
|
9590
11355
|
volumeName?: string;
|
|
11356
|
+
/**
|
|
11357
|
+
* OpenStack volume size (GiB). Required when `bootFromVolume` is `true` (string)
|
|
11358
|
+
*/
|
|
9591
11359
|
volumeSize?: string;
|
|
11360
|
+
/**
|
|
11361
|
+
* OpenStack volume type. Required when `bootFromVolume` is `true` and openstack cloud does not have a default volume type (string)
|
|
11362
|
+
*/
|
|
9592
11363
|
volumeType?: string;
|
|
9593
11364
|
}
|
|
9594
11365
|
export interface NodeTemplateOutscaleConfig {
|
|
@@ -10146,9 +11917,21 @@ export interface ProjectAlertRuleWorkloadRule {
|
|
|
10146
11917
|
workloadId?: string;
|
|
10147
11918
|
}
|
|
10148
11919
|
export interface ProjectContainerResourceLimit {
|
|
11920
|
+
/**
|
|
11921
|
+
* Limit for limits cpu in project (string)
|
|
11922
|
+
*/
|
|
10149
11923
|
limitsCpu?: string;
|
|
11924
|
+
/**
|
|
11925
|
+
* Limit for limits memory in project (string)
|
|
11926
|
+
*/
|
|
10150
11927
|
limitsMemory?: string;
|
|
11928
|
+
/**
|
|
11929
|
+
* Limit for requests cpu in project (string)
|
|
11930
|
+
*/
|
|
10151
11931
|
requestsCpu?: string;
|
|
11932
|
+
/**
|
|
11933
|
+
* Limit for requests memory in project (string)
|
|
11934
|
+
*/
|
|
10152
11935
|
requestsMemory?: string;
|
|
10153
11936
|
}
|
|
10154
11937
|
export interface ProjectProjectMonitoringInput {
|
|
@@ -10164,42 +11947,133 @@ export interface ProjectProjectMonitoringInput {
|
|
|
10164
11947
|
version?: string;
|
|
10165
11948
|
}
|
|
10166
11949
|
export interface ProjectResourceQuota {
|
|
11950
|
+
/**
|
|
11951
|
+
* Default resource quota limit for namespaces in project (list maxitems:1)
|
|
11952
|
+
*/
|
|
10167
11953
|
namespaceDefaultLimit: outputs.ProjectResourceQuotaNamespaceDefaultLimit;
|
|
11954
|
+
/**
|
|
11955
|
+
* Resource quota limit for project (list maxitems:1)
|
|
11956
|
+
*/
|
|
10168
11957
|
projectLimit: outputs.ProjectResourceQuotaProjectLimit;
|
|
10169
11958
|
}
|
|
10170
11959
|
export interface ProjectResourceQuotaNamespaceDefaultLimit {
|
|
11960
|
+
/**
|
|
11961
|
+
* Limit for config maps in project (string)
|
|
11962
|
+
*/
|
|
10171
11963
|
configMaps?: string;
|
|
11964
|
+
/**
|
|
11965
|
+
* Limit for limits cpu in project (string)
|
|
11966
|
+
*/
|
|
10172
11967
|
limitsCpu?: string;
|
|
11968
|
+
/**
|
|
11969
|
+
* Limit for limits memory in project (string)
|
|
11970
|
+
*/
|
|
10173
11971
|
limitsMemory?: string;
|
|
11972
|
+
/**
|
|
11973
|
+
* Limit for persistent volume claims in project (string)
|
|
11974
|
+
*/
|
|
10174
11975
|
persistentVolumeClaims?: string;
|
|
11976
|
+
/**
|
|
11977
|
+
* Limit for pods in project (string)
|
|
11978
|
+
*/
|
|
10175
11979
|
pods?: string;
|
|
11980
|
+
/**
|
|
11981
|
+
* Limit for replication controllers in project (string)
|
|
11982
|
+
*/
|
|
10176
11983
|
replicationControllers?: string;
|
|
11984
|
+
/**
|
|
11985
|
+
* Limit for requests cpu in project (string)
|
|
11986
|
+
*/
|
|
10177
11987
|
requestsCpu?: string;
|
|
11988
|
+
/**
|
|
11989
|
+
* Limit for requests memory in project (string)
|
|
11990
|
+
*/
|
|
10178
11991
|
requestsMemory?: string;
|
|
11992
|
+
/**
|
|
11993
|
+
* Limit for requests storage in project (string)
|
|
11994
|
+
*/
|
|
10179
11995
|
requestsStorage?: string;
|
|
11996
|
+
/**
|
|
11997
|
+
* Limit for secrets in project (string)
|
|
11998
|
+
*/
|
|
10180
11999
|
secrets?: string;
|
|
10181
12000
|
services?: string;
|
|
12001
|
+
/**
|
|
12002
|
+
* Limit for services load balancers in project (string)
|
|
12003
|
+
*/
|
|
10182
12004
|
servicesLoadBalancers?: string;
|
|
12005
|
+
/**
|
|
12006
|
+
* Limit for services node ports in project (string)
|
|
12007
|
+
*
|
|
12008
|
+
* More info at [resource-quotas](https://rancher.com/docs/rancher/v2.x/en/k8s-in-rancher/projects-and-namespaces/resource-quotas/)
|
|
12009
|
+
*/
|
|
10183
12010
|
servicesNodePorts?: string;
|
|
10184
12011
|
}
|
|
10185
12012
|
export interface ProjectResourceQuotaProjectLimit {
|
|
12013
|
+
/**
|
|
12014
|
+
* Limit for config maps in project (string)
|
|
12015
|
+
*/
|
|
10186
12016
|
configMaps?: string;
|
|
12017
|
+
/**
|
|
12018
|
+
* Limit for limits cpu in project (string)
|
|
12019
|
+
*/
|
|
10187
12020
|
limitsCpu?: string;
|
|
12021
|
+
/**
|
|
12022
|
+
* Limit for limits memory in project (string)
|
|
12023
|
+
*/
|
|
10188
12024
|
limitsMemory?: string;
|
|
12025
|
+
/**
|
|
12026
|
+
* Limit for persistent volume claims in project (string)
|
|
12027
|
+
*/
|
|
10189
12028
|
persistentVolumeClaims?: string;
|
|
12029
|
+
/**
|
|
12030
|
+
* Limit for pods in project (string)
|
|
12031
|
+
*/
|
|
10190
12032
|
pods?: string;
|
|
12033
|
+
/**
|
|
12034
|
+
* Limit for replication controllers in project (string)
|
|
12035
|
+
*/
|
|
10191
12036
|
replicationControllers?: string;
|
|
12037
|
+
/**
|
|
12038
|
+
* Limit for requests cpu in project (string)
|
|
12039
|
+
*/
|
|
10192
12040
|
requestsCpu?: string;
|
|
12041
|
+
/**
|
|
12042
|
+
* Limit for requests memory in project (string)
|
|
12043
|
+
*/
|
|
10193
12044
|
requestsMemory?: string;
|
|
12045
|
+
/**
|
|
12046
|
+
* Limit for requests storage in project (string)
|
|
12047
|
+
*/
|
|
10194
12048
|
requestsStorage?: string;
|
|
12049
|
+
/**
|
|
12050
|
+
* Limit for secrets in project (string)
|
|
12051
|
+
*/
|
|
10195
12052
|
secrets?: string;
|
|
10196
12053
|
services?: string;
|
|
12054
|
+
/**
|
|
12055
|
+
* Limit for services load balancers in project (string)
|
|
12056
|
+
*/
|
|
10197
12057
|
servicesLoadBalancers?: string;
|
|
12058
|
+
/**
|
|
12059
|
+
* Limit for services node ports in project (string)
|
|
12060
|
+
*
|
|
12061
|
+
* More info at [resource-quotas](https://rancher.com/docs/rancher/v2.x/en/k8s-in-rancher/projects-and-namespaces/resource-quotas/)
|
|
12062
|
+
*/
|
|
10198
12063
|
servicesNodePorts?: string;
|
|
10199
12064
|
}
|
|
10200
12065
|
export interface RegistryRegistry {
|
|
12066
|
+
/**
|
|
12067
|
+
* Address for registry.
|
|
12068
|
+
*/
|
|
10201
12069
|
address: string;
|
|
12070
|
+
/**
|
|
12071
|
+
* Password for the registry (string)
|
|
12072
|
+
*/
|
|
10202
12073
|
password?: string;
|
|
12074
|
+
/**
|
|
12075
|
+
* Username for the registry (string)
|
|
12076
|
+
*/
|
|
10203
12077
|
username?: string;
|
|
10204
12078
|
}
|
|
10205
12079
|
export interface RoleTemplateExternalRule {
|