Skip to content
This repository was archived by the owner on Nov 28, 2024. It is now read-only.

Commit bc053cd

Browse files
author
OpenStack K8s CI
committed
Update openstack-k8s-operators to 8fc1c3d
1 parent 20bba33 commit bc053cd

File tree

6 files changed

+242
-192
lines changed

6 files changed

+242
-192
lines changed

api/bases/ansibleee.openstack.org_openstackansibleees.yaml

Lines changed: 55 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -401,18 +401,6 @@ spec:
401401
type: object
402402
resources:
403403
properties:
404-
claims:
405-
items:
406-
properties:
407-
name:
408-
type: string
409-
required:
410-
- name
411-
type: object
412-
type: array
413-
x-kubernetes-list-map-keys:
414-
- name
415-
x-kubernetes-list-type: map
416404
limits:
417405
additionalProperties:
418406
anyOf:
@@ -456,6 +444,8 @@ spec:
456444
x-kubernetes-map-type: atomic
457445
storageClassName:
458446
type: string
447+
volumeAttributesClassName:
448+
type: string
459449
volumeMode:
460450
type: string
461451
volumeName:
@@ -644,6 +634,43 @@ spec:
644634
sources:
645635
items:
646636
properties:
637+
clusterTrustBundle:
638+
properties:
639+
labelSelector:
640+
properties:
641+
matchExpressions:
642+
items:
643+
properties:
644+
key:
645+
type: string
646+
operator:
647+
type: string
648+
values:
649+
items:
650+
type: string
651+
type: array
652+
required:
653+
- key
654+
- operator
655+
type: object
656+
type: array
657+
matchLabels:
658+
additionalProperties:
659+
type: string
660+
type: object
661+
type: object
662+
x-kubernetes-map-type: atomic
663+
name:
664+
type: string
665+
optional:
666+
type: boolean
667+
path:
668+
type: string
669+
signerName:
670+
type: string
671+
required:
672+
- path
673+
type: object
647674
configMap:
648675
properties:
649676
items:
@@ -1032,6 +1059,14 @@ spec:
10321059
required:
10331060
- port
10341061
type: object
1062+
sleep:
1063+
properties:
1064+
seconds:
1065+
format: int64
1066+
type: integer
1067+
required:
1068+
- seconds
1069+
type: object
10351070
tcpSocket:
10361071
properties:
10371072
host:
@@ -1082,6 +1117,14 @@ spec:
10821117
required:
10831118
- port
10841119
type: object
1120+
sleep:
1121+
properties:
1122+
seconds:
1123+
format: int64
1124+
type: integer
1125+
required:
1126+
- seconds
1127+
type: object
10851128
tcpSocket:
10861129
properties:
10871130
host:

api/go.mod

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,32 @@
11
module github.com/openstack-k8s-operators/openstack-ansibleee-operator/api
22

3-
go 1.20
3+
go 1.21
4+
5+
toolchain go1.21.13
46

57
require (
68
github.com/go-playground/validator/v10 v10.22.0
7-
github.com/onsi/ginkgo/v2 v2.20.0
9+
github.com/onsi/ginkgo/v2 v2.20.1
810
github.com/onsi/gomega v1.34.1
9-
github.com/openstack-k8s-operators/lib-common/modules/common v0.4.1-0.20240814075458-0ae9f7f9e059
10-
github.com/openstack-k8s-operators/lib-common/modules/storage v0.4.1-0.20240814075458-0ae9f7f9e059
11+
github.com/openstack-k8s-operators/lib-common/modules/common v0.4.1-0.20240926101719-8fc1c3da53f7
12+
github.com/openstack-k8s-operators/lib-common/modules/storage v0.4.1-0.20240926101719-8fc1c3da53f7
1113
gopkg.in/yaml.v3 v3.0.1
12-
k8s.io/api v0.28.13
13-
k8s.io/apimachinery v0.28.13
14-
k8s.io/client-go v0.28.13
15-
sigs.k8s.io/controller-runtime v0.16.6
14+
k8s.io/api v0.29.9
15+
k8s.io/apimachinery v0.29.9
16+
k8s.io/client-go v0.29.9
17+
sigs.k8s.io/controller-runtime v0.17.6
1618
)
1719

1820
require (
1921
github.com/beorn7/perks v1.0.1 // indirect
2022
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2123
github.com/davecgh/go-spew v1.1.1 // indirect
2224
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
23-
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
24-
github.com/fsnotify/fsnotify v1.6.0 // indirect
25+
github.com/evanphx/json-patch/v5 v5.8.0 // indirect
26+
github.com/fsnotify/fsnotify v1.7.0 // indirect
2527
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
2628
github.com/go-logr/logr v1.4.2 // indirect
27-
github.com/go-logr/zapr v1.2.4 // indirect
29+
github.com/go-logr/zapr v1.3.0 // indirect
2830
github.com/go-openapi/jsonpointer v0.19.6 // indirect
2931
github.com/go-openapi/jsonreference v0.20.2 // indirect
3032
github.com/go-openapi/swag v0.22.3 // indirect
@@ -44,22 +46,22 @@ require (
4446
github.com/json-iterator/go v1.1.12 // indirect
4547
github.com/leodido/go-urn v1.4.0 // indirect
4648
github.com/mailru/easyjson v0.7.7 // indirect
47-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
49+
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
4850
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4951
github.com/modern-go/reflect2 v1.0.2 // indirect
5052
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5153
github.com/pkg/errors v0.9.1 // indirect
52-
github.com/prometheus/client_golang v1.16.0 // indirect
53-
github.com/prometheus/client_model v0.4.0 // indirect
54-
github.com/prometheus/common v0.44.0 // indirect
55-
github.com/prometheus/procfs v0.10.1 // indirect
54+
github.com/prometheus/client_golang v1.18.0 // indirect
55+
github.com/prometheus/client_model v0.5.0 // indirect
56+
github.com/prometheus/common v0.45.0 // indirect
57+
github.com/prometheus/procfs v0.12.0 // indirect
5658
github.com/spf13/pflag v1.0.5 // indirect
5759
go.uber.org/multierr v1.11.0 // indirect
5860
go.uber.org/zap v1.27.0 // indirect
5961
golang.org/x/crypto v0.26.0 // indirect
6062
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
6163
golang.org/x/net v0.28.0 // indirect
62-
golang.org/x/oauth2 v0.8.0 // indirect
64+
golang.org/x/oauth2 v0.12.0 // indirect
6365
golang.org/x/sys v0.23.0 // indirect
6466
golang.org/x/term v0.23.0 // indirect
6567
golang.org/x/text v0.17.0 // indirect
@@ -70,10 +72,10 @@ require (
7072
google.golang.org/protobuf v1.34.1 // indirect
7173
gopkg.in/inf.v0 v0.9.1 // indirect
7274
gopkg.in/yaml.v2 v2.4.0 // indirect
73-
k8s.io/apiextensions-apiserver v0.28.13 // indirect
74-
k8s.io/component-base v0.28.13 // indirect
75+
k8s.io/apiextensions-apiserver v0.29.2 // indirect
76+
k8s.io/component-base v0.29.2 // indirect
7577
k8s.io/klog/v2 v2.110.1 // indirect
76-
k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 // indirect
78+
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
7779
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
7880
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
7981
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect

0 commit comments

Comments
 (0)