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

Fix aks manifest YAML not up-to-date #1047

Merged
merged 1 commit into from
Aug 7, 2020
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
12 changes: 12 additions & 0 deletions build/yamls/antrea-aks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ metadata:
name: clusternetworkpolicies.security.antrea.tanzu.vmware.com
spec:
additionalPrinterColumns:
- JSONPath: .spec.tier
description: The Tier to which this ClusterNetworkPolicy belongs to.
name: Tier
type: string
- JSONPath: .spec.priority
description: The Priority of this ClusterNetworkPolicy relative to other policies.
format: float
Expand Down Expand Up @@ -150,6 +154,14 @@ spec:
maximum: 10000
minimum: 1
type: number
tier:
enum:
- Emergency
- SecurityOps
- NetworkOps
- Platform
- Application
type: string
required:
- appliedTo
- priority
Expand Down
2 changes: 2 additions & 0 deletions ci/check-manifest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ YAMLS=(
"build/yamls/antrea.yml"
"build/yamls/antrea-ipsec.yml"
"build/yamls/antrea-eks.yml"
"build/yamls/antrea-gke.yml"
"build/yamls/antrea-aks.yml"
"build/yamls/antrea-octant.yml"
"build/yamls/antrea-windows.yml"
)
Expand Down