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

chore: update mysql yaml port #3258

Merged
merged 1 commit into from Jun 19, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifests/quick-start-mysql.yaml
Expand Up @@ -555,7 +555,7 @@ spec:
image: mysql:8
name: main
ports:
- containerPort: 5432
Copy link
Contributor

Choose a reason for hiding this comment

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

that is very wrong! - but I think it must be changed in a different file - mysql-deployment.yaml and then run make manifests?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done, PTAL!

- containerPort: 3306
readinessProbe:
exec:
command:
Expand Down
2 changes: 1 addition & 1 deletion manifests/quick-start/mysql/mysql-deployment.yaml
Expand Up @@ -27,7 +27,7 @@ spec:
- name: MYSQL_RANDOM_ROOT_PASSWORD
value: "yes"
ports:
- containerPort: 5432
- containerPort: 3306
readinessProbe:
exec:
command: ["mysql", "-u", "mysql", "-ppassword", "argo", "-e", "SELECT 1"]
Expand Down