Skip to content

Commit 89cf736

Browse files
committed
Update generated code
1 parent daedd55 commit 89cf736

File tree

3 files changed

+78
-0
lines changed

3 files changed

+78
-0
lines changed

apis/repo-manager.pulpproject.org/v1/zz_generated.deepcopy.go

Lines changed: 42 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/bases/repo-manager.pulpproject.org_pulps.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1207,6 +1207,11 @@ spec:
12071207
x-kubernetes-list-type: atomic
12081208
type: object
12091209
type: object
1210+
custom_labels:
1211+
additionalProperties:
1212+
type: string
1213+
description: Custom labels to add to api resources
1214+
type: object
12101215
deployment_annotations:
12111216
additionalProperties:
12121217
type: string
@@ -3271,6 +3276,11 @@ spec:
32713276
x-kubernetes-list-type: atomic
32723277
type: object
32733278
type: object
3279+
custom_labels:
3280+
additionalProperties:
3281+
type: string
3282+
description: Custom labels to add to cache resources
3283+
type: object
32743284
deployment_annotations:
32753285
additionalProperties:
32763286
type: string
@@ -4703,6 +4713,11 @@ spec:
47034713
x-kubernetes-list-type: atomic
47044714
type: object
47054715
type: object
4716+
custom_labels:
4717+
additionalProperties:
4718+
type: string
4719+
description: Custom labels to add to content resources
4720+
type: object
47064721
deployment_annotations:
47074722
additionalProperties:
47084723
type: string
@@ -6772,6 +6787,11 @@ spec:
67726787
x-kubernetes-list-type: atomic
67736788
type: object
67746789
type: object
6790+
custom_labels:
6791+
additionalProperties:
6792+
type: string
6793+
description: Custom labels to add to database resources
6794+
type: object
67756795
external_db_secret:
67766796
description: Secret name with the configuration to use an external
67776797
database
@@ -8048,6 +8068,11 @@ spec:
80488068
description: Web defines desired state of pulpcore-web (reverse-proxy)
80498069
resources
80508070
properties:
8071+
custom_labels:
8072+
additionalProperties:
8073+
type: string
8074+
description: Custom labels to add to web resources
8075+
type: object
80518076
deployment_annotations:
80528077
additionalProperties:
80538078
type: string
@@ -9678,6 +9703,11 @@ spec:
96789703
x-kubernetes-list-type: atomic
96799704
type: object
96809705
type: object
9706+
custom_labels:
9707+
additionalProperties:
9708+
type: string
9709+
description: Custom labels to add to worker resources
9710+
type: object
96819711
deployment_annotations:
96829712
additionalProperties:
96839713
type: string

controllers/repo_manager/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Api defines desired state of pulpcore-api resources
4040
| init_container | InitContainer defines configuration of the init-containers that run in pulpcore pods | [PulpContainer](#pulpcontainer) | false |
4141
| env_vars | Environment variables to add to pulpcore-api container | []corev1.EnvVar | false |
4242
| deployment_annotations | Annotations for the api deployment | map[string]string | false |
43+
| custom_labels | Custom labels to add to api resources | map[string]string | false |
4344

4445
[Back to Custom Resources](#custom-resources)
4546

@@ -63,6 +64,7 @@ Cache defines desired state of redis resources
6364
| node_selector | NodeSelector for the Pulp pods. | map[string]string | false |
6465
| strategy | The deployment strategy to use to replace existing pods with new ones. | appsv1.DeploymentStrategy | false |
6566
| deployment_annotations | Annotations for the cache deployment | map[string]string | false |
67+
| custom_labels | Custom labels to add to cache resources | map[string]string | false |
6668

6769
[Back to Custom Resources](#custom-resources)
6870

@@ -87,6 +89,7 @@ Content defines desired state of pulpcore-content resources
8789
| init_container | InitContainer defines configuration of the init-containers that run in pulpcore pods | [PulpContainer](#pulpcontainer) | false |
8890
| env_vars | Environment variables to add to pulpcore-content container | []corev1.EnvVar | false |
8991
| deployment_annotations | Annotations for the content deployment | map[string]string | false |
92+
| custom_labels | Custom labels to add to content resources | map[string]string | false |
9093

9194
[Back to Custom Resources](#custom-resources)
9295

@@ -114,6 +117,7 @@ Database defines desired state of postgres
114117
| pvc | PersistenVolumeClaim name that will be used by database pods If defined, the PVC must be provisioned by the user and the operator will only configure the deployment to use it | string | false |
115118
| readinessProbe | Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. | *corev1.Probe | false |
116119
| livenessProbe | Periodic probe of container liveness. Container will be restarted if the probe fails. | *corev1.Probe | false |
120+
| custom_labels | Custom labels to add to database resources | map[string]string | false |
117121

118122
[Back to Custom Resources](#custom-resources)
119123

@@ -305,6 +309,7 @@ Web defines desired state of pulpcore-web (reverse-proxy) resources
305309
| tls_termination_mechanism | The secure TLS termination mechanism to use Default: \"edge\" | string | false |
306310
| env_vars | Environment variables to add to pulpcore-web container | []corev1.EnvVar | false |
307311
| deployment_annotations | Annotations for the web deployment | map[string]string | false |
312+
| custom_labels | Custom labels to add to web resources | map[string]string | false |
308313

309314
[Back to Custom Resources](#custom-resources)
310315

@@ -327,5 +332,6 @@ Worker defines desired state of pulpcore-worker resources
327332
| init_container | InitContainer defines configuration of the init-containers that run in pulpcore pods | [PulpContainer](#pulpcontainer) | false |
328333
| env_vars | Environment variables to add to pulpcore-worker container | []corev1.EnvVar | false |
329334
| deployment_annotations | Annotations for the worker deployment | map[string]string | false |
335+
| custom_labels | Custom labels to add to worker resources | map[string]string | false |
330336

331337
[Back to Custom Resources](#custom-resources)

0 commit comments

Comments
 (0)