|
1 | 1 | apiVersion: data.packaging.carvel.dev/v1alpha1 |
2 | 2 | kind: Package |
3 | 3 | metadata: |
| 4 | + creationTimestamp: null |
4 | 5 | name: metrics-server.packages.kadras.io.0.6.1 |
5 | 6 | spec: |
| 7 | + licenses: |
| 8 | + - Apache 2.0 |
| 9 | + refName: metrics-server.packages.kadras.io |
| 10 | + releaseNotes: https://github.com/kubernetes-sigs/metrics-server/releases |
| 11 | + releasedAt: "2022-10-22T20:07:36Z" |
| 12 | + template: |
| 13 | + spec: |
| 14 | + deploy: |
| 15 | + - kapp: {} |
| 16 | + fetch: |
| 17 | + - imgpkgBundle: |
| 18 | + image: ghcr.io/arktonix/package-for-metrics-server@sha256:ea17539f905f37760155a9df26c848dcda2273875d4aa06b369e7a6dfd5e2c8a |
| 19 | + template: |
| 20 | + - ytt: |
| 21 | + paths: |
| 22 | + - config |
| 23 | + - kbld: |
| 24 | + paths: |
| 25 | + - '-' |
| 26 | + - .imgpkg/images.yml |
6 | 27 | valuesSchema: |
7 | 28 | openAPIv3: |
8 | | - type: object |
9 | 29 | additionalProperties: false |
10 | 30 | description: OpenAPIv3 Schema for metrics-server |
11 | 31 | properties: |
12 | | - namespace: |
13 | | - type: string |
14 | | - description: The namespace in which metrics-server is deployed |
15 | | - default: kube-system |
16 | | - nodeSelector: |
17 | | - nullable: true |
18 | | - description: NodeSelector configuration applied to all the deployments |
19 | | - default: null |
20 | | - deployment: |
21 | | - type: object |
| 32 | + daemonset: |
22 | 33 | additionalProperties: false |
23 | 34 | properties: |
24 | 35 | updateStrategy: |
25 | | - type: string |
26 | | - nullable: true |
27 | | - description: Update strategy of deployments |
28 | 36 | default: null |
| 37 | + description: Update strategy of daemonsets |
| 38 | + nullable: true |
| 39 | + type: string |
| 40 | + type: object |
| 41 | + deployment: |
| 42 | + additionalProperties: false |
| 43 | + properties: |
29 | 44 | rollingUpdate: |
30 | | - type: object |
31 | 45 | additionalProperties: false |
32 | 46 | properties: |
33 | | - maxUnavailable: |
34 | | - type: integer |
35 | | - nullable: true |
36 | | - description: The maxUnavailable of rollingUpdate. Applied only if RollingUpdate is used as updateStrategy |
37 | | - default: null |
38 | 47 | maxSurge: |
39 | | - type: integer |
| 48 | + default: null |
| 49 | + description: The maxSurge of rollingUpdate. Applied only if RollingUpdate |
| 50 | + is used as updateStrategy |
40 | 51 | nullable: true |
41 | | - description: The maxSurge of rollingUpdate. Applied only if RollingUpdate is used as updateStrategy |
| 52 | + type: integer |
| 53 | + maxUnavailable: |
42 | 54 | default: null |
43 | | - daemonset: |
44 | | - type: object |
45 | | - additionalProperties: false |
46 | | - properties: |
| 55 | + description: The maxUnavailable of rollingUpdate. Applied only if |
| 56 | + RollingUpdate is used as updateStrategy |
| 57 | + nullable: true |
| 58 | + type: integer |
| 59 | + type: object |
47 | 60 | updateStrategy: |
48 | | - type: string |
49 | | - nullable: true |
50 | | - description: Update strategy of daemonsets |
51 | 61 | default: null |
52 | | - metricsServer: |
| 62 | + description: Update strategy of deployments |
| 63 | + nullable: true |
| 64 | + type: string |
53 | 65 | type: object |
| 66 | + metricsServer: |
54 | 67 | additionalProperties: false |
55 | 68 | properties: |
56 | | - namespace: |
57 | | - type: string |
58 | | - nullable: true |
59 | | - description: The namespace value used by older templates, will be overwriten if top level namespace is present, kept for backward compatibility |
60 | | - default: null |
61 | | - createNamespace: |
62 | | - type: boolean |
63 | | - description: Whether to create namespace specified for metrics-server |
64 | | - default: true |
65 | 69 | config: |
66 | | - type: object |
67 | 70 | additionalProperties: false |
68 | 71 | properties: |
69 | | - securePort: |
70 | | - type: integer |
71 | | - description: The HTTPS secure port used by metrics-server |
72 | | - default: 4443 |
73 | | - updateStrategy: |
74 | | - type: string |
75 | | - description: The update strategy of the metrics-server deployment |
76 | | - default: RollingUpdate |
| 72 | + apiServiceInsecureTLS: |
| 73 | + default: true |
| 74 | + description: Whether to enable insecure TLS for metrics-server api |
| 75 | + service |
| 76 | + type: boolean |
77 | 77 | args: |
78 | | - type: array |
| 78 | + default: [] |
79 | 79 | description: Arguments passed into metrics-server container |
80 | 80 | items: |
81 | | - type: string |
82 | 81 | default: "" |
83 | | - default: [] |
| 82 | + type: string |
| 83 | + type: array |
84 | 84 | probe: |
85 | | - type: object |
86 | 85 | additionalProperties: false |
87 | 86 | properties: |
88 | 87 | failureThreshold: |
89 | | - type: integer |
90 | | - description: Probe failureThreshold of metrics-server deployment |
91 | 88 | default: 3 |
92 | | - periodSeconds: |
| 89 | + description: Probe failureThreshold of metrics-server deployment |
93 | 90 | type: integer |
94 | | - description: Probe period of metrics-server deployment |
| 91 | + periodSeconds: |
95 | 92 | default: 10 |
96 | | - apiServiceInsecureTLS: |
97 | | - type: boolean |
98 | | - description: Whether to enable insecure TLS for metrics-server api service |
99 | | - default: true |
| 93 | + description: Probe period of metrics-server deployment |
| 94 | + type: integer |
| 95 | + type: object |
| 96 | + securePort: |
| 97 | + default: 4443 |
| 98 | + description: The HTTPS secure port used by metrics-server |
| 99 | + type: integer |
100 | 100 | tolerations: |
101 | | - nullable: true |
102 | | - description: Metrics-server deployment tolerations |
103 | 101 | default: [] |
104 | | - image: |
| 102 | + description: Metrics-server deployment tolerations |
| 103 | + nullable: true |
| 104 | + updateStrategy: |
| 105 | + default: RollingUpdate |
| 106 | + description: The update strategy of the metrics-server deployment |
| 107 | + type: string |
105 | 108 | type: object |
| 109 | + createNamespace: |
| 110 | + default: true |
| 111 | + description: Whether to create namespace specified for metrics-server |
| 112 | + type: boolean |
| 113 | + image: |
106 | 114 | additionalProperties: false |
107 | 115 | properties: |
108 | | - repository: |
109 | | - type: string |
110 | | - description: The repository of metrics-server image |
111 | | - default: "" |
112 | 116 | name: |
113 | | - type: string |
| 117 | + default: "" |
114 | 118 | description: The path of image |
| 119 | + type: string |
| 120 | + pullPolicy: |
| 121 | + default: IfNotPresent |
| 122 | + description: The pull policy of image |
| 123 | + type: string |
| 124 | + repository: |
115 | 125 | default: "" |
116 | | - tag: |
| 126 | + description: The repository of metrics-server image |
117 | 127 | type: string |
118 | | - description: The image tag |
| 128 | + tag: |
119 | 129 | default: "" |
120 | | - pullPolicy: |
| 130 | + description: The image tag |
121 | 131 | type: string |
122 | | - description: The pull policy of image |
123 | | - default: IfNotPresent |
124 | | - refName: metrics-server.packages.kadras.io |
| 132 | + type: object |
| 133 | + namespace: |
| 134 | + default: null |
| 135 | + description: The namespace value used by older templates, will be overwriten |
| 136 | + if top level namespace is present, kept for backward compatibility |
| 137 | + nullable: true |
| 138 | + type: string |
| 139 | + type: object |
| 140 | + namespace: |
| 141 | + default: kube-system |
| 142 | + description: The namespace in which metrics-server is deployed |
| 143 | + type: string |
| 144 | + nodeSelector: |
| 145 | + default: null |
| 146 | + description: NodeSelector configuration applied to all the deployments |
| 147 | + nullable: true |
| 148 | + type: object |
125 | 149 | version: 0.6.1 |
126 | | - releaseNotes: metrics-server 0.6.1 https://github.com/kubernetes-sigs/metrics-server/releases/tag/v0.6.1 |
127 | | - licenses: |
128 | | - - Apache 2.0 |
129 | | - template: |
130 | | - spec: |
131 | | - fetch: |
132 | | - - imgpkgBundle: |
133 | | - image: projects.registry.vmware.com/tce/metrics-server@sha256:55f29f8ba79933204c49642b1c9b745e1d60af3221d16b7772f4ba1b7ad60725 |
134 | | - template: |
135 | | - - ytt: |
136 | | - paths: |
137 | | - - config/ |
138 | | - - kbld: |
139 | | - paths: |
140 | | - - '-' |
141 | | - - .imgpkg/images.yml |
142 | | - deploy: |
143 | | - - kapp: {} |
|
0 commit comments