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

update location of where kustomize looks for deploying example gateway #1090

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 hack/quickstart-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ success "Kuadrant sample configuration deployed."

# Deploy gateway
info "Deploying example gateway ..."
kustomize build config/dependencies/istio/gateway | kubectl apply -f -
kustomize build ${KUADRANT_REPO_RAW}/config/dependencies/istio/gateway | kubectl apply -f -
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I haven't tried this but I am always wondering why write this in this fashion, why use a pipe?

kubectl apply -k ${KUADRANT_REPO_RAW}/config/dependencie/istio/gateway

success "Kuadrant sample gateway deployed."

# Install thanos on hub cluster
Expand Down
Loading