Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automator: Update dependencies in istio-ecosystem/sail-operator@main #532

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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "istio build-tools",
"image": "gcr.io/istio-testing/build-tools:master-f53c293f26fde9fd818b2ddc22dc3836dd58103e",
"image": "gcr.io/istio-testing/build-tools:master-0b8e6b9676d328fbeb28a23b8d1134dcc56d98ec",
"privileged": true,
"remoteEnv": {
"USE_GKE_GCLOUD_AUTH_PLUGIN": "True",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
update-deps:
runs-on: ubuntu-latest
container:
image: gcr.io/istio-testing/build-tools:master-f53c293f26fde9fd818b2ddc22dc3836dd58103e
image: gcr.io/istio-testing/build-tools:master-0b8e6b9676d328fbeb28a23b8d1134dcc56d98ec
options: --entrypoint ''

steps:
Expand Down
2 changes: 1 addition & 1 deletion Makefile.core.mk
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ ISTIOCTL ?= $(LOCALBIN)/istioctl

## Tool Versions
OPERATOR_SDK_VERSION ?= v1.38.0
HELM_VERSION ?= v3.16.3
HELM_VERSION ?= v3.16.4
CONTROLLER_TOOLS_VERSION ?= v0.16.5
OPM_VERSION ?= v1.48.0
OLM_VERSION ?= v0.30.0
Expand Down
26 changes: 14 additions & 12 deletions bundle/manifests/extensions.istio.io_wasmplugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,14 +133,14 @@ spec:
type: string
x-kubernetes-validations:
- message: wildcard not allowed in label value match
rule: '!self.contains(''*'')'
rule: '!self.contains("*")'
description: One or more labels that indicate a specific set of
pods/VMs on which a policy should be applied.
maxProperties: 4096
type: object
x-kubernetes-validations:
- message: wildcard not allowed in label key match
rule: self.all(key, !key.contains('*'))
rule: self.all(key, !key.contains("*"))
- message: key must not be empty
rule: self.all(key, key.size() != 0)
type: object
Expand Down Expand Up @@ -180,8 +180,9 @@ spec:
x-kubernetes-validations:
- message: Support kinds are core/Service, networking.istio.io/ServiceEntry,
gateway.networking.k8s.io/Gateway
rule: '[self.group, self.kind] in [[''core'',''Service''], ['''',''Service''],
[''gateway.networking.k8s.io'',''Gateway''], [''networking.istio.io'',''ServiceEntry'']]'
rule: '[self.group, self.kind] in [["core", "Service"], ["", "Service"],
["gateway.networking.k8s.io", "Gateway"], ["networking.istio.io",
"ServiceEntry"]]'
targetRefs:
description: Optional.
items:
Expand Down Expand Up @@ -215,8 +216,9 @@ spec:
x-kubernetes-validations:
- message: Support kinds are core/Service, networking.istio.io/ServiceEntry,
gateway.networking.k8s.io/Gateway
rule: '[self.group, self.kind] in [[''core'',''Service''], ['''',''Service''],
[''gateway.networking.k8s.io'',''Gateway''], [''networking.istio.io'',''ServiceEntry'']]'
rule: '[self.group, self.kind] in [["core", "Service"], ["", "Service"],
["gateway.networking.k8s.io", "Gateway"], ["networking.istio.io",
"ServiceEntry"]]'
maxItems: 16
type: array
type:
Expand All @@ -235,10 +237,9 @@ spec:
type: string
x-kubernetes-validations:
- message: url must have schema one of [http, https, file, oci]
rule: 'isURL(self) ? (url(self).getScheme() in ['''', ''http'',
''https'', ''oci'', ''file'']) : (isURL(''http://'' + self) &&
url(''http://'' +self).getScheme() in ['''', ''http'', ''https'',
''oci'', ''file''])'
rule: |-
isURL(self) ? (url(self).getScheme() in ["", "http", "https", "oci", "file"]) : (isURL("http://" + self) &&
url("http://" + self).getScheme() in ["", "http", "https", "oci", "file"])
verificationKey:
type: string
vmConfig:
Expand Down Expand Up @@ -272,7 +273,7 @@ spec:
type: object
x-kubernetes-validations:
- message: value may only be set when valueFrom is INLINE
rule: '(has(self.valueFrom) ? self.valueFrom : '''') != ''HOST''
rule: '(has(self.valueFrom) ? self.valueFrom : "") != "HOST"
|| !has(self.value)'
maxItems: 256
type: array
Expand All @@ -285,7 +286,8 @@ spec:
type: object
x-kubernetes-validations:
- message: only one of targetRefs or selector can be set
rule: (has(self.selector)?1:0)+(has(self.targetRef)?1:0)+(has(self.targetRefs)?1:0)<=1
rule: '(has(self.selector) ? 1 : 0) + (has(self.targetRef) ? 1 : 0)
+ (has(self.targetRefs) ? 1 : 0) <= 1'
status:
properties:
conditions:
Expand Down
12 changes: 6 additions & 6 deletions bundle/manifests/networking.istio.io_destinationrules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1844,14 +1844,14 @@ spec:
type: string
x-kubernetes-validations:
- message: wildcard not allowed in label value match
rule: '!self.contains(''*'')'
rule: '!self.contains("*")'
description: One or more labels that indicate a specific set of
pods/VMs on which a policy should be applied.
maxProperties: 4096
type: object
x-kubernetes-validations:
- message: wildcard not allowed in label key match
rule: self.all(key, !key.contains('*'))
rule: self.all(key, !key.contains("*"))
- message: key must not be empty
rule: self.all(key, key.size() != 0)
type: object
Expand Down Expand Up @@ -3758,14 +3758,14 @@ spec:
type: string
x-kubernetes-validations:
- message: wildcard not allowed in label value match
rule: '!self.contains(''*'')'
rule: '!self.contains("*")'
description: One or more labels that indicate a specific set of
pods/VMs on which a policy should be applied.
maxProperties: 4096
type: object
x-kubernetes-validations:
- message: wildcard not allowed in label key match
rule: self.all(key, !key.contains('*'))
rule: self.all(key, !key.contains("*"))
- message: key must not be empty
rule: self.all(key, key.size() != 0)
type: object
Expand Down Expand Up @@ -5672,14 +5672,14 @@ spec:
type: string
x-kubernetes-validations:
- message: wildcard not allowed in label value match
rule: '!self.contains(''*'')'
rule: '!self.contains("*")'
description: One or more labels that indicate a specific set of
pods/VMs on which a policy should be applied.
maxProperties: 4096
type: object
x-kubernetes-validations:
- message: wildcard not allowed in label key match
rule: self.all(key, !key.contains('*'))
rule: self.all(key, !key.contains("*"))
- message: key must not be empty
rule: self.all(key, key.size() != 0)
type: object
Expand Down
10 changes: 6 additions & 4 deletions bundle/manifests/networking.istio.io_envoyfilters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,9 @@ spec:
x-kubernetes-validations:
- message: Support kinds are core/Service, networking.istio.io/ServiceEntry,
gateway.networking.k8s.io/Gateway
rule: '[self.group, self.kind] in [[''core'',''Service''], ['''',''Service''],
[''gateway.networking.k8s.io'',''Gateway''], [''networking.istio.io'',''ServiceEntry'']]'
rule: '[self.group, self.kind] in [["core", "Service"], ["", "Service"],
["gateway.networking.k8s.io", "Gateway"], ["networking.istio.io",
"ServiceEntry"]]'
maxItems: 16
type: array
workloadSelector:
Expand All @@ -316,7 +317,7 @@ spec:
type: string
x-kubernetes-validations:
- message: wildcard is not supported in selector
rule: '!self.contains(''*'')'
rule: '!self.contains("*")'
description: One or more labels that indicate a specific set of
pods/VMs on which the configuration should be applied.
maxProperties: 256
Expand All @@ -325,7 +326,8 @@ spec:
type: object
x-kubernetes-validations:
- message: only one of targetRefs or workloadSelector can be set
rule: (has(self.workloadSelector)?1:0)+(has(self.targetRefs)?1:0)<=1
rule: '(has(self.workloadSelector) ? 1 : 0) + (has(self.targetRefs)
? 1 : 0) <= 1'
status:
properties:
conditions:
Expand Down
4 changes: 2 additions & 2 deletions bundle/manifests/networking.istio.io_proxyconfigs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ spec:
type: string
x-kubernetes-validations:
- message: wildcard not allowed in label value match
rule: '!self.contains(''*'')'
rule: '!self.contains("*")'
description: One or more labels that indicate a specific set of
pods/VMs on which a policy should be applied.
maxProperties: 4096
type: object
x-kubernetes-validations:
- message: wildcard not allowed in label key match
rule: self.all(key, !key.contains('*'))
rule: self.all(key, !key.contains("*"))
- message: key must not be empty
rule: self.all(key, key.size() != 0)
type: object
Expand Down
Loading
Loading