-
Notifications
You must be signed in to change notification settings - Fork 153
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 wrong path to Helm values file in the quickstart #3630
Conversation
@@ -20,7 +20,7 @@ Note: It's not required to install the PipeCD control plane to the cluster where | |||
``` console | |||
helm install pipecd oci://ghcr.io/pipe-cd/chart/pipecd --version {{< blocks/latest_version >}} \ | |||
--namespace pipecd --create-namespace \ | |||
--values https://raw.githubusercontent.com/pipe-cd/manifests/{{< blocks/latest_version >}}/quickstart/control-plane-values.yaml | |||
--values https://raw.githubusercontent.com/pipe-cd/pipecd/{< blocks/latest_version >}}/quickstart/control-plane-values.yaml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
--values https://raw.githubusercontent.com/pipe-cd/pipecd/{< blocks/latest_version >}}/quickstart/control-plane-values.yaml | |
--values https://raw.githubusercontent.com/pipe-cd/pipecd/{{< blocks/latest_version >}}/quickstart/control-plane-values.yaml |
Nice catch 👍 Could you update docs under |
OK, I do. BTW, I tried quickstart on kind of Apple Silicon's Mac. The following is Pod's status.
I confirm problem to do
I think it seems like this problem is occurred by invalid platform. How to resolve it. |
5def083
to
c225435
Compare
@sivchari From this error message, this is caused by docker4mac trying to pull MySQL official image from docker-hub. Since docker-hub does not contain MySQL image for M1, you should use the following command to pull the MySQL image.
After this command, helm will use the local pulled image, so there is no need to worry about that later 😄 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool 🙌
docker images
shell scripthelm install pipecd oci://ghcr.io/pipe-cd/chart/pipecd --version v0.31.0 --namespace pipecd --create-namespace --values https://raw.githubusercontent.com/pipe-cd/pipecd/v0.31.0/quickstart/control-plane-values.yaml kubectl get pod -n pipecd
kubectl get events -n pipecd
I can't 😢 |
@sivchari Nice catch! Thank you. 💯 |
@sivchari, thanks for reporting. Could you open an issue for the error and send all possible logs there. We will find out a way to handle it there. |
What this PR does / why we need it:
I fixed quick start guide.
https://raw.githubusercontent.com/pipe-cd/manifests/{{< blocks/latest_version >}}/quickstart/control-plane-values.yaml
is incorrect path. (404)Which issue(s) this PR fixes:
Fixes #
Does this PR introduce a user-facing change?: