generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 492
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #964 from robscott/reference-policy-fix
Fixing bug where namespace could be unspecified in ReferencePolicy
- Loading branch information
Showing
4 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
config/crd/experimental/gateway.networking.k8s.io_referencepolicies.yaml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
config/crd/stable/gateway.networking.k8s.io_referencepolicies.yaml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
hack/invalid-examples/v1alpha2/referencepolicy/missing-ns.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
apiVersion: gateway.networking.k8s.io/v1alpha2 | ||
kind: ReferencePolicy | ||
metadata: | ||
name: missing-ns | ||
spec: | ||
to: | ||
- group: "" | ||
kind: "Service" | ||
from: | ||
- group: "gateway.networking.k8s.io" | ||
kind: "HTTPRoute" |