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

feat(meshmultizoneservice): api #10643

Merged
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
72 changes: 72 additions & 0 deletions app/kumactl/cmd/completion/testdata/bash.golden
Original file line number Diff line number Diff line change
Expand Up @@ -2389,6 +2389,76 @@ _kumactl_get_meshmetrics()
noun_aliases=()
}

_kumactl_get_meshmultizoneservice()
{
last_command="kumactl_get_meshmultizoneservice"

command_aliases=()

commands=()

flags=()
two_word_flags=()
local_nonpersistent_flags=()
flags_with_completion=()
flags_completion=()

flags+=("--mesh=")
two_word_flags+=("--mesh")
two_word_flags+=("-m")
flags+=("--api-timeout=")
two_word_flags+=("--api-timeout")
flags+=("--config-file=")
two_word_flags+=("--config-file")
flags+=("--log-level=")
two_word_flags+=("--log-level")
flags+=("--no-config")
flags+=("--output=")
two_word_flags+=("--output")
two_word_flags+=("-o")

must_have_one_flag=()
must_have_one_noun=()
noun_aliases=()
}

_kumactl_get_meshmultizoneservices()
{
last_command="kumactl_get_meshmultizoneservices"

command_aliases=()

commands=()

flags=()
two_word_flags=()
local_nonpersistent_flags=()
flags_with_completion=()
flags_completion=()

flags+=("--mesh=")
two_word_flags+=("--mesh")
two_word_flags+=("-m")
flags+=("--offset=")
two_word_flags+=("--offset")
flags+=("--size=")
two_word_flags+=("--size")
flags+=("--api-timeout=")
two_word_flags+=("--api-timeout")
flags+=("--config-file=")
two_word_flags+=("--config-file")
flags+=("--log-level=")
two_word_flags+=("--log-level")
flags+=("--no-config")
flags+=("--output=")
two_word_flags+=("--output")
two_word_flags+=("-o")

must_have_one_flag=()
must_have_one_noun=()
noun_aliases=()
}

_kumactl_get_meshpassthrough()
{
last_command="kumactl_get_meshpassthrough"
Expand Down Expand Up @@ -3972,6 +4042,8 @@ _kumactl_get()
commands+=("meshloadbalancingstrategy")
commands+=("meshmetric")
commands+=("meshmetrics")
commands+=("meshmultizoneservice")
commands+=("meshmultizoneservices")
commands+=("meshpassthrough")
commands+=("meshpassthroughs")
commands+=("meshproxypatch")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ rules:
- meshtrafficpermissions
- hostnamegenerators
- meshexternalservices
- meshmultizoneservices
- meshservices
verbs:
- get
Expand Down Expand Up @@ -594,7 +595,7 @@ spec:
metadata:
annotations:
checksum/config: fd9d1d8386f97f2bd49e50f476520816168a1c9f60bbc43dec1347a64d239155
checksum/tls-secrets: 31d2a666f62aa9bb7ed631b29dea95b3e82e47e9f490fb976200767f51185f14
checksum/tls-secrets: ab74ff424a21b080a396ffabd259f04ce845bd0c206dbf7d89e579358f934c0f
labels:
app: kuma-control-plane
app.kubernetes.io/name: kuma
Expand Down Expand Up @@ -792,6 +793,7 @@ webhooks:
- meshtrafficpermissions
- hostnamegenerators
- meshexternalservices
- meshmultizoneservices
- meshservices
sideEffects: None
- name: owner-reference.kuma-admission.kuma.io
Expand Down Expand Up @@ -848,6 +850,7 @@ webhooks:
- meshtrafficpermissions
- hostnamegenerators
- meshexternalservices
- meshmultizoneservices
- meshservices


Expand Down Expand Up @@ -977,6 +980,7 @@ webhooks:
- meshtrafficpermissions
- hostnamegenerators
- meshexternalservices
- meshmultizoneservices
- meshservices


Expand Down
Loading
Loading