Skip to content

Commit

Permalink
[maistra-3.0] Automator: Update dependencies (#1688)
Browse files Browse the repository at this point in the history
Co-authored-by: maistra-bot <null>
  • Loading branch information
maistra-bot authored Mar 14, 2024
1 parent 996a643 commit 05723d8
Show file tree
Hide file tree
Showing 16 changed files with 246 additions and 24 deletions.
2 changes: 1 addition & 1 deletion Makefile.core.mk
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ OPM ?= $(LOCALBIN)/opm

## Tool Versions
OPERATOR_SDK_VERSION ?= v1.34.1
HELM_VERSION ?= v3.14.2
HELM_VERSION ?= v3.14.3
CONTROLLER_TOOLS_VERSION ?= v0.14.0
OPM_VERSION ?= v1.36.0

Expand Down
7 changes: 5 additions & 2 deletions bundle/manifests/sailoperator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ metadata:
capabilities: Seamless Upgrades
categories: OpenShift Optional, Integration & Delivery, Networking, Security
containerImage: quay.io/maistra-dev/sail-operator:3.0-latest
createdAt: "2024-03-13T03:05:18Z"
createdAt: "2024-03-14T03:25:39Z"
description: Experimental operator for installing Istio service mesh
features.operators.openshift.io/cnf: "false"
features.operators.openshift.io/cni: "true"
Expand Down Expand Up @@ -103,6 +103,9 @@ spec:
- kind: AuthorizationPolicy
name: authorizationpolicies.security.istio.io
version: v1beta1
- kind: PeerAuthentication
name: peerauthentications.security.istio.io
version: v1
- kind: PeerAuthentication
name: peerauthentications.security.istio.io
version: v1beta1
Expand Down Expand Up @@ -222,7 +225,7 @@ spec:
- v1.20.3
- v1.19.7
- latest (13438cea)
- latest (44056bc3)
[See this page](https://github.com/istio-ecosystem/sail-operator/blob/pre-main/bundle/README.md) for instructions on how to use it.
displayName: Sail Operator
Expand Down
73 changes: 73 additions & 0 deletions bundle/manifests/security.istio.io_peerauthentications.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,79 @@ spec:
singular: peerauthentication
scope: Namespaced
versions:
- additionalPrinterColumns:
- description: Defines the mTLS mode used for peer authentication.
jsonPath: .spec.mtls.mode
name: Mode
type: string
- description: 'CreationTimestamp is a timestamp representing the server time
when this object was created. It is not guaranteed to be set in happens-before
order across separate operations. Clients may not set this value. It is represented
in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for
lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata'
jsonPath: .metadata.creationTimestamp
name: Age
type: date
name: v1
schema:
openAPIV3Schema:
properties:
spec:
description: 'Peer authentication configuration for workloads. See more
details at: https://istio.io/docs/reference/config/security/peer_authentication.html'
properties:
mtls:
description: Mutual TLS settings for workload.
properties:
mode:
description: |-
Defines the mTLS mode used for peer authentication.
Valid Options: DISABLE, PERMISSIVE, STRICT
enum:
- UNSET
- DISABLE
- PERMISSIVE
- STRICT
type: string
type: object
portLevelMtls:
additionalProperties:
properties:
mode:
description: |-
Defines the mTLS mode used for peer authentication.
Valid Options: DISABLE, PERMISSIVE, STRICT
enum:
- UNSET
- DISABLE
- PERMISSIVE
- STRICT
type: string
type: object
description: Port specific mutual TLS settings.
type: object
selector:
description: The selector determines the workloads to apply the PeerAuthentication
on.
properties:
matchLabels:
additionalProperties:
type: string
description: One or more labels that indicate a specific set of
pods/VMs on which a policy should be applied.
type: object
type: object
type: object
status:
type: object
x-kubernetes-preserve-unknown-fields: true
type: object
served: true
storage: false
subresources:
status: {}
- additionalPrinterColumns:
- description: Defines the mTLS mode used for peer authentication.
jsonPath: .spec.mtls.mode
Expand Down
73 changes: 73 additions & 0 deletions chart/crds/security.istio.io_peerauthentications.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,79 @@ spec:
singular: peerauthentication
scope: Namespaced
versions:
- additionalPrinterColumns:
- description: Defines the mTLS mode used for peer authentication.
jsonPath: .spec.mtls.mode
name: Mode
type: string
- description: 'CreationTimestamp is a timestamp representing the server time
when this object was created. It is not guaranteed to be set in happens-before
order across separate operations. Clients may not set this value. It is represented
in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for
lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata'
jsonPath: .metadata.creationTimestamp
name: Age
type: date
name: v1
schema:
openAPIV3Schema:
properties:
spec:
description: 'Peer authentication configuration for workloads. See more
details at: https://istio.io/docs/reference/config/security/peer_authentication.html'
properties:
mtls:
description: Mutual TLS settings for workload.
properties:
mode:
description: |-
Defines the mTLS mode used for peer authentication.
Valid Options: DISABLE, PERMISSIVE, STRICT
enum:
- UNSET
- DISABLE
- PERMISSIVE
- STRICT
type: string
type: object
portLevelMtls:
additionalProperties:
properties:
mode:
description: |-
Defines the mTLS mode used for peer authentication.
Valid Options: DISABLE, PERMISSIVE, STRICT
enum:
- UNSET
- DISABLE
- PERMISSIVE
- STRICT
type: string
type: object
description: Port specific mutual TLS settings.
type: object
selector:
description: The selector determines the workloads to apply the PeerAuthentication
on.
properties:
matchLabels:
additionalProperties:
type: string
description: One or more labels that indicate a specific set of
pods/VMs on which a policy should be applied.
type: object
type: object
type: object
status:
type: object
x-kubernetes-preserve-unknown-fields: true
type: object
served: true
storage: false
subresources:
status: {}
- additionalPrinterColumns:
- description: Defines the mTLS mode used for peer authentication.
jsonPath: .spec.mtls.mode
Expand Down
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ csv:
- v1.20.3
- v1.19.7
- latest (13438cea)
- latest (44056bc3)
[See this page](https://github.com/istio-ecosystem/sail-operator/blob/pre-main/bundle/README.md) for instructions on how to use it.
support: Community based
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ require (
k8s.io/client-go v0.29.2
k8s.io/kubectl v0.29.1
sigs.k8s.io/controller-runtime v0.16.3
sigs.k8s.io/yaml v1.4.0
)

require (
Expand Down Expand Up @@ -170,5 +171,4 @@ require (
sigs.k8s.io/kustomize/api v0.13.5-0.20230601165947-6ce0bf390ce3 // indirect
sigs.k8s.io/kustomize/kyaml v0.16.0 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
sigs.k8s.io/yaml v1.4.0 // indirect
)
4 changes: 2 additions & 2 deletions resources/latest/charts/base/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
apiVersion: v1
appVersion: 1.22-alpha.13438cea4e073056d2e45f48066979c792cb3ec7
appVersion: 1.22-alpha.44056bc33df10623819256d847848c27066b3279
description: Helm chart for deploying Istio cluster resources and CRDs
icon: https://istio.io/latest/favicons/android-192x192.png
keywords:
- istio
name: base
sources:
- https://github.com/istio/istio
version: 1.22-alpha.13438cea4e073056d2e45f48066979c792cb3ec7
version: 1.22-alpha.44056bc33df10623819256d847848c27066b3279
73 changes: 73 additions & 0 deletions resources/latest/charts/base/crds/crd-all.gen.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions resources/latest/charts/cni/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: 1.22-alpha.13438cea4e073056d2e45f48066979c792cb3ec7
appVersion: 1.22-alpha.44056bc33df10623819256d847848c27066b3279
description: Helm chart for istio-cni components
icon: https://istio.io/latest/favicons/android-192x192.png
keywords:
Expand All @@ -8,4 +8,4 @@ keywords:
name: cni
sources:
- https://github.com/istio/istio/tree/master/cni
version: 1.22-alpha.13438cea4e073056d2e45f48066979c792cb3ec7
version: 1.22-alpha.44056bc33df10623819256d847848c27066b3279
2 changes: 1 addition & 1 deletion resources/latest/charts/cni/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ defaults:
hub: gcr.io/istio-testing

# Default tag for Istio images.
tag: 1.22-alpha.13438cea4e073056d2e45f48066979c792cb3ec7
tag: 1.22-alpha.44056bc33df10623819256d847848c27066b3279

# Variant of the image to use.
# Currently supported are: [debug, distroless]
Expand Down
4 changes: 2 additions & 2 deletions resources/latest/charts/gateway/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: 1.22-alpha.13438cea4e073056d2e45f48066979c792cb3ec7
appVersion: 1.22-alpha.44056bc33df10623819256d847848c27066b3279
description: Helm chart for deploying Istio gateways
icon: https://istio.io/latest/favicons/android-192x192.png
keywords:
Expand All @@ -9,4 +9,4 @@ name: gateway
sources:
- https://github.com/istio/istio
type: application
version: 1.22-alpha.13438cea4e073056d2e45f48066979c792cb3ec7
version: 1.22-alpha.44056bc33df10623819256d847848c27066b3279
4 changes: 2 additions & 2 deletions resources/latest/charts/istiod/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: 1.22-alpha.13438cea4e073056d2e45f48066979c792cb3ec7
appVersion: 1.22-alpha.44056bc33df10623819256d847848c27066b3279
description: Helm chart for istio control plane
icon: https://istio.io/latest/favicons/android-192x192.png
keywords:
Expand All @@ -9,4 +9,4 @@ keywords:
name: istiod
sources:
- https://github.com/istio/istio
version: 1.22-alpha.13438cea4e073056d2e45f48066979c792cb3ec7
version: 1.22-alpha.44056bc33df10623819256d847848c27066b3279
2 changes: 1 addition & 1 deletion resources/latest/charts/istiod/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ defaults:
# Dev builds from prow are on gcr.io
hub: gcr.io/istio-testing
# Default tag for Istio images.
tag: 1.22-alpha.13438cea4e073056d2e45f48066979c792cb3ec7
tag: 1.22-alpha.44056bc33df10623819256d847848c27066b3279
# Variant of the image to use.
# Currently supported are: [debug, distroless]
variant: ""
Expand Down
4 changes: 2 additions & 2 deletions resources/latest/charts/ztunnel/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: 1.22-alpha.13438cea4e073056d2e45f48066979c792cb3ec7
appVersion: 1.22-alpha.44056bc33df10623819256d847848c27066b3279
description: Helm chart for istio ztunnel components
icon: https://istio.io/latest/favicons/android-192x192.png
keywords:
Expand All @@ -8,4 +8,4 @@ keywords:
name: ztunnel
sources:
- https://github.com/istio/istio
version: 1.22-alpha.13438cea4e073056d2e45f48066979c792cb3ec7
version: 1.22-alpha.44056bc33df10623819256d847848c27066b3279
2 changes: 1 addition & 1 deletion resources/latest/charts/ztunnel/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defaults:
# Hub to pull from. Image will be `Hub/Image:Tag-Variant`
hub: gcr.io/istio-testing
# Tag to pull from. Image will be `Hub/Image:Tag-Variant`
tag: 1.22-alpha.13438cea4e073056d2e45f48066979c792cb3ec7
tag: 1.22-alpha.44056bc33df10623819256d847848c27066b3279
# Variant to pull. Options are "debug" or "distroless". Unset will use the default for the given version.
variant: ""

Expand Down
Loading

0 comments on commit 05723d8

Please sign in to comment.