-
Notifications
You must be signed in to change notification settings - Fork 16.8k
Conversation
Thanks for your pull request. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please follow instructions at https://github.com/kubernetes/kubernetes/wiki/CLA-FAQ to sign the CLA. It may take a couple minutes for the CLA signature to be fully registered; after that, please reply here with a new comment and we'll verify. Thanks.
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
Hi @edude03. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
060326b
to
ed33140
Compare
@@ -49,6 +49,8 @@ spec: | |||
- "land-worker" | |||
- "--name=${HOSTNAME}" | |||
env: | |||
- name: CONCOURSE_BAGGAGECLAIM_DRIVER | |||
value: "btrfs" |
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.
I guess this should be configurable.
/cc @frodenas |
@unguiculus: GitHub didn't allow me to request PR reviews from the following users: frodenas. Note that only kubernetes members can review this PR, and authors cannot review their own PRs. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/ok-to-test |
spec: | ||
type: {{ .Values.web.service.type }} | ||
ports: | ||
- name: atc | ||
port: {{ .Values.concourse.atcPort }} | ||
targetPort: atc | ||
- name: atc-https | ||
port: 443 | ||
targetPort: atc | ||
- name: tsa | ||
port: {{ .Values.concourse.tsaPort }} | ||
targetPort: tsa |
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.
Can you also make nodePort configurable (if service type is LoadBalancer or NodePort)?
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.
I'm not 100% sure how to do that. If the service type is LoadBalancer then port 443, else what would be the appropriate port?
As mentioned in #1365 the workers fail to start with this configuration. Issue open at concourse/concourse#1230 |
@viglesiasce - that issue is fixed in my chart, it's because your worker volume has less than 10GB free causing an integer underflow. In my chart, I set the worker volume size default to 20GB. |
@edude03 I still have it crashing albeit with a different error now (
|
Indeed
|
stable/concourse/requirements.yaml
Outdated
repository: https://kubernetes-charts.storage.googleapis.com/ | ||
condition: postgresql.enabled |
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.
Removing condition: postgresql.enabled
will break #1056
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.
Thanks, I didn't mean to remove that
@edude03: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
Marking this as stale. Please update within the next week. |
Closing as stale. |
This is the configuration I'm using in production at the moment. This PR should supersede PR #1365 as it updates to a newer version and adds a few fixes.