Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
47 changes: 15 additions & 32 deletions crds/operators.coreos.com_clusterserviceversions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2968,9 +2968,7 @@ spec:
when it might take a long time to
load data or warm a cache, than
during steady-state operation. This
cannot be updated. This is a beta
feature enabled by the StartupProbe
feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes'
cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes'
type: object
properties:
exec:
Expand Down Expand Up @@ -6071,9 +6069,7 @@ spec:
when it might take a long time to
load data or warm a cache, than
during steady-state operation. This
cannot be updated. This is a beta
feature enabled by the StartupProbe
feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes'
cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes'
type: object
properties:
exec:
Expand Down Expand Up @@ -6523,8 +6519,8 @@ spec:
It will have no effect on ephemeral
volume types such as: secret, configmaps
and emptydir. Valid values are "OnRootMismatch"
and "Always". If not specified defaults
to "Always".'
and "Always". If not specified, "Always"
is used.'
type: string
runAsGroup:
description: The GID to run the entrypoint
Expand Down Expand Up @@ -7597,35 +7593,24 @@ spec:
can be used to specify
either: * An existing
VolumeSnapshot object
(snapshot.storage.k8s.io/VolumeSnapshot
- Beta) * An existing
PVC (PersistentVolumeClaim)
(snapshot.storage.k8s.io/VolumeSnapshot)
* An existing PVC (PersistentVolumeClaim)
* An existing custom
resource/object that
implements data population
(Alpha) In order to
use VolumeSnapshot object
types, the appropriate
resource that implements
data population (Alpha)
In order to use custom
resource types that
implement data population,
the AnyVolumeDataSource
feature gate must be
enabled (VolumeSnapshotDataSource
or AnyVolumeDataSource)
If the provisioner or
an external controller
enabled. If the provisioner
or an external controller
can support the specified
data source, it will
create a new volume
based on the contents
of the specified data
source. If the specified
data source is not supported,
the volume will not
be created and the failure
will be reported as
an event. In the future,
we plan to support more
data source types and
the behavior of the
provisioner may change.'
source.'
type: object
required:
- kind
Expand Down Expand Up @@ -8243,8 +8228,6 @@ spec:
resources secrets, configmaps, and
downward API
type: object
required:
- sources
properties:
defaultMode:
description: Mode bits used to
Expand Down
28 changes: 10 additions & 18 deletions crds/operators.coreos.com_subscriptions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -856,22 +856,16 @@ spec:
dataSource:
description: 'This field can be used to specify
either: * An existing VolumeSnapshot object
(snapshot.storage.k8s.io/VolumeSnapshot -
Beta) * An existing PVC (PersistentVolumeClaim)
* An existing custom resource/object that
implements data population (Alpha) In order
to use VolumeSnapshot object types, the appropriate
feature gate must be enabled (VolumeSnapshotDataSource
or AnyVolumeDataSource) If the provisioner
or an external controller can support the
specified data source, it will create a new
volume based on the contents of the specified
data source. If the specified data source
is not supported, the volume will not be created
and the failure will be reported as an event.
In the future, we plan to support more data
source types and the behavior of the provisioner
may change.'
(snapshot.storage.k8s.io/VolumeSnapshot) *
An existing PVC (PersistentVolumeClaim) *
An existing custom resource that implements
data population (Alpha) In order to use custom
resource types that implement data population,
the AnyVolumeDataSource feature gate must
be enabled. If the provisioner or an external
controller can support the specified data
source, it will create a new volume based
on the contents of the specified data source.'
type: object
required:
- kind
Expand Down Expand Up @@ -1332,8 +1326,6 @@ spec:
description: Items for all in one resources secrets, configmaps,
and downward API
type: object
required:
- sources
properties:
defaultMode:
description: Mode bits used to set permissions on created
Expand Down
18 changes: 9 additions & 9 deletions crds/zz_defs.go

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ module github.com/operator-framework/api
go 1.15

require (
github.com/blang/semver v3.5.0+incompatible
github.com/blang/semver/v4 v4.0.0
github.com/ghodss/yaml v1.0.0
github.com/go-bindata/go-bindata/v3 v3.1.3
github.com/mikefarah/yq/v2 v2.4.1
github.com/sirupsen/logrus v1.6.0
github.com/spf13/cobra v1.0.0
github.com/stretchr/testify v1.5.1
k8s.io/api v0.19.3
k8s.io/apiextensions-apiserver v0.19.3
k8s.io/apimachinery v0.19.3
k8s.io/client-go v0.19.3
github.com/spf13/cobra v1.1.1
github.com/stretchr/testify v1.6.1
k8s.io/api v0.20.0
k8s.io/apiextensions-apiserver v0.20.0
k8s.io/apimachinery v0.20.0
k8s.io/client-go v0.20.0
sigs.k8s.io/controller-runtime v0.7.0
sigs.k8s.io/controller-tools v0.4.1
)
Loading