I am following
VMware vSphere - Cloud Foundry BOSH
I get the following error. I can ping the host but none of the end points seem to be up, for example port 22 or 6868
Deploying:
Creating instance 'bosh/0':
Waiting until instance is ready:
Post "https://mbus:<redacted>@10.0.10.222:6868/agent": dial tcp 10.0.10.222:6868: i/o timeout
Exit code 1
What we would need is a way for buildpack consumers like us, to build automation (in Concourse or anything similar) that warns the correct people in the enterprise for taking action when some Buildpack is discontinuing some language version
Hi Carlos,The release notes for the classical Cloud Foundry Node.js Buildpack are in GitHub : https://github.com/cloudfoundry/nodejs-buildpack/releasesThese need to be read regularly by a human for taking action when necessary, like when some language versions are discontinued.For newer Paketo buildpacks, I’ve raised some similar concern in the Paketo Slack last year:What we would need is a way for buildpack consumers like us, to build automation (in Concourse or anything similar) that warns the correct people in the enterprise for taking action when some Buildpack is discontinuing some language version. I don’t know if there has been any progress on this since last year.BenjaminLe 4 août 2022 à 10:54, Delgado, Carlos via lists.cloudfoundry.org <carlos.delgado02=sap.com@...> a écrit :Hello team,I am interested to know about communications whenever a new buildpack is deployed and available in AWS cflinuxfs3 stack, in order to adapt our projects timely fashion, I am interested in Nodejs buildpack in particular, since a new version has been released recently that removed Node 12 and affected our deployments.Do you know by any chance if such communication exists?Many thanks,BR.Carlos Delgado
DevOps Lead, Customer Success Automation ES
SAP ESPAÑA, S.A. Torre Diagonal Mar - B1 C/, 08019 Barcelona, SpainPflichtangaben/Mandatory Disclosure Statement:Diese E-Mail kann Betriebs- oder Geschäftsgeheimnisse oder sonstige vertrauliche Informationen enthalten. Sollten Siediese E-Mail irrtümlich erhalten haben, ist Ihnen eine Kenntnisnahme des Inhalts, eine Vervielfältigung oder Weitergabe derE-Mail ausdrücklich untersagt. Bitte benachrichtigen Sie uns und vernichten Sie die empfangene E-Mail.Vielen Dank.This e-mail may contain trade secrets or privileged, undisclosed, or otherwise confidential information. If you have receivedthis e-mail in error, you are hereby notified that any review, copying, or distribution of it is strictly prohibited. Please informus immediately and destroy the original transmittal.Thank you for your cooperation<image001.png><image002.jpg>
--
Le 12 août 2022 à 12:12, Conner UK, Jim via lists.cloudfoundry.org <jim.conner=fil.com@...> a écrit :At my place of work, we have concourse jobs which sends us messages on our MS Teams channel whenever a new release appears. Maybe this will be useful for someone else too.Here’s some sanitised snippets from our release-notification-pipeline.***resources:- name: java-buildpack-releasetype: github-releasesource:user: cloudfoundryrepository: java-buildpackrelease: trueaccess_token: ((github_token))- name: notify-new-java-buildpack-releasesplan:- do:- in_parallel:- get: release-notifications-pipeline- get: release-reporesource: java-buildpack-releaseparams:globs: [notthisthing] # because we only want to watch for tag changes & data, not the release tgz itself (proxy won't allow download of it)trigger: true- task: check-versionsconfig:platform: linuxinputs:- name: release-notifications-pipeline- name: release-repoimage_resource:type: docker-imagesource:repository: ((any_docker_image_which_has_curl_and_jq))tag: latestrun:path: cf-deployment-notifications/check_versions.shparams:RELEASE_NAME: java-buildpackTEAMS_WEBHOOK_URL: ((ms_teams_webhook_url))timeout: 15m***.. and the source for the check_versions.sh script.***#!/bin/bashset -eif [[ -f "release-repo/body" ]]; thensplit --line-bytes=7500 release-repo/body release-repo/release-body-for file in $(find release-repo -name "release-body-*" | sort )dorequest_body=$(jq -n --arg body "$(cat "${file}")" --arg title "New $RELEASE_NAME $(cat release-repo/version) release" '{title: $title, text: $body}')curl -if -X POST --data "${request_body}" -k "${TEAMS_WEBHOOK_URL}"rm "${file}"doneelserequest_body=$(jq -n --arg body "The author was too lazy to add a release note" --arg title "New $RELEASE_NAME $(cat release-repo/version) release" '{title: $title, text: $body}')curl -if -X POST --data "${request_body}" -k "${TEAMS_WEBHOOK_URL}"fi***JimFrom: <cf-dev@...> on behalf of Benjamin Gandon <benjamin@...>
Reply to: "cf-dev@..." <cf-dev@...>
Date: Friday, 12 August 2022 at 10:42
To: "cf-dev@..." <cf-dev@...>
Subject: Re: [cf-dev] Buildpack deployment in cflinuxfs3 stack for AWSHi Carlos, The release notes for the classical Cloud Foundry Node.js Buildpack are in GitHub : https://github.com/cloudfoundry/nodejs-buildpack/releases These need to be read regularly by a human for taking action when necessary, like whenHi Carlos,The release notes for the classical Cloud Foundry Node.js Buildpack are in GitHub : https://github.com/cloudfoundry/nodejs-buildpack/releasesThese need to be read regularly by a human for taking action when necessary, like when some language versions are discontinued.For newer Paketo buildpacks, I’ve raised some similar concern in the Paketo Slack last year:What we would need is a way for buildpack consumers like us, to build automation (in Concourse or anything similar) that warns the correct people in the enterprise for taking action when some Buildpack is discontinuing some language version. I don’t know if there has been any progress on this since last year.BenjaminLe 4 août 2022 à 10:54, Delgado, Carlos via lists.cloudfoundry.org<carlos.delgado02=sap.com@...> a écrit :Hello team,I am interested to know about communications whenever a new buildpack is deployed and available in AWS cflinuxfs3 stack, in order to adapt our projects timely fashion, I am interested in Nodejs buildpack in particular, since a new version has been released recently that removed Node 12 and affected our deployments.Do you know by any chance if such communication exists?Many thanks,BR.Carlos Delgado
DevOps Lead, Customer Success Automation ES
SAP ESPAÑA, S.A. Torre Diagonal Mar - B1 C/, 08019 Barcelona, SpainPflichtangaben/Mandatory Disclosure Statement:Diese E-Mail kann Betriebs- oder Geschäftsgeheimnisse oder sonstige vertrauliche Informationen enthalten. Sollten Siediese E-Mail irrtümlich erhalten haben, ist Ihnen eine Kenntnisnahme des Inhalts, eine Vervielfältigung oder Weitergabe derE-Mail ausdrücklich untersagt. Bitte benachrichtigen Sie uns und vernichten Sie die empfangene E-Mail.Vielen Dank.This e-mail may contain trade secrets or privileged, undisclosed, or otherwise confidential information. If you have receivedthis e-mail in error, you are hereby notified that any review, copying, or distribution of it is strictly prohibited. Please informus immediately and destroy the original transmittal.Thank you for your cooperation<image001.png><image002.jpg>
The information transmitted is intended for the person or entity to which it is addressed and may contain confidential, privileged or copyrighted material. If you receive this in error, please contact the sender and delete the material from any computer. Any views or opinions expressed are those of the author and do not necessarily represent those of Fidelity International. All e-mails may be monitored. FIL Investments International (Reg. No.1448245), FIL Investment Services (UK) Limited (Reg. No. 2016555), FIL Pensions Management (Reg. No. 2015142), Financial Administration Services Limited (Reg. No. 1629709) and FIL Wealth Management Limited (Registered. No. 06121251) are authorised and regulated in the UK by the Financial Conduct Authority. FIL Life Insurance Limited (Reg No. 3406905) is authorised in the UK by the Prudential Regulation Authority and regulated in the UK by the Financial Conduct Authority and the Prudential Regulation Authority. Registered offices at Beech Gate, Millfield Lane, Lower Kingswood, Tadworth, Surrey KT20 6RP.
At my place of work, we have concourse jobs which sends us messages on our MS Teams channel whenever a new release appears. Maybe this will be useful for someone else too.
Here’s some sanitised snippets from our release-notification-pipeline.
***
resources:
- name: java-buildpack-release
type: github-release
source:
user: cloudfoundry
repository: java-buildpack
release: true
access_token: ((github_token))
- name: notify-new-java-buildpack-releases
plan:
- do:
- in_parallel:
- get: release-notifications-pipeline
- get: release-repo
resource: java-buildpack-release
params:
globs: [notthisthing] # because we only want to watch for tag changes & data, not the release tgz itself (proxy won't allow download of it)
trigger: true
- task: check-versions
config:
platform: linux
inputs:
- name: release-notifications-pipeline
- name: release-repo
image_resource:
type: docker-image
source:
repository: ((any_docker_image_which_has_curl_and_jq))
tag: latest
run:
path: cf-deployment-notifications/check_versions.sh
params:
RELEASE_NAME: java-buildpack
TEAMS_WEBHOOK_URL: ((ms_teams_webhook_url))
timeout: 15m
***
.. and the source for the check_versions.sh script.
***
#!/bin/bash
set -e
if [[ -f "release-repo/body" ]]; then
split --line-bytes=7500 release-repo/body release-repo/release-body-
for file in $(find release-repo -name "release-body-*" | sort )
do
request_body=$(jq -n --arg body "$(cat "${file}")" --arg title "New $RELEASE_NAME $(cat release-repo/version) release" '{title: $title, text: $body}')
curl -if -X POST --data "${request_body}" -k "${TEAMS_WEBHOOK_URL}"
rm "${file}"
done
else
request_body=$(jq -n --arg body "The author was too lazy to add a release note" --arg title "New $RELEASE_NAME $(cat release-repo/version) release" '{title: $title, text: $body}')
curl -if -X POST --data "${request_body}" -k "${TEAMS_WEBHOOK_URL}"
fi
***
Jim
From: <cf-dev@...> on behalf of Benjamin Gandon <benjamin@...>
Reply to: "cf-dev@..." <cf-dev@...>
Date: Friday, 12 August 2022 at 10:42
To: "cf-dev@..." <cf-dev@...>
Subject: Re: [cf-dev] Buildpack deployment in cflinuxfs3 stack for AWS
Hi Carlos, The release notes for the classical Cloud Foundry Node.js Buildpack are in GitHub : https://github.com/cloudfoundry/nodejs-buildpack/releases These need to be read regularly by a human for taking action when necessary, like when
Hi Carlos,
The release notes for the classical Cloud Foundry Node.js Buildpack are in GitHub : https://github.com/cloudfoundry/nodejs-buildpack/releases
These need to be read regularly by a human for taking action when necessary, like when some language versions are discontinued.
For newer Paketo buildpacks, I’ve raised some similar concern in the Paketo Slack last year:
What we would need is a way for buildpack consumers like us, to build automation (in Concourse or anything similar) that warns the correct people in the enterprise for taking action when some Buildpack is discontinuing some language version. I don’t know if there has been any progress on this since last year.
Benjamin
Le 4 août 2022 à 10:54, Delgado, Carlos via lists.cloudfoundry.org <carlos.delgado02=sap.com@...> a écrit :
Hello team,
I am interested to know about communications whenever a new buildpack is deployed and available in AWS cflinuxfs3 stack, in order to adapt our projects timely fashion, I am interested in Nodejs buildpack in particular, since a new version has been released recently that removed Node 12 and affected our deployments.
Do you know by any chance if such communication exists?
Many thanks,
BR.
Carlos Delgado
DevOps Lead, Customer Success Automation ES
SAP ESPAÑA, S.A. Torre Diagonal Mar - B1 C/, 08019 Barcelona, Spain
T +34 93 483-3238, M +34 678 684650, E carlos.delgado02@...
Pflichtangaben/Mandatory Disclosure Statement:
Diese E-Mail kann Betriebs- oder Geschäftsgeheimnisse oder sonstige vertrauliche Informationen enthalten. Sollten Sie
diese E-Mail irrtümlich erhalten haben, ist Ihnen eine Kenntnisnahme des Inhalts, eine Vervielfältigung oder Weitergabe der
E-Mail ausdrücklich untersagt. Bitte benachrichtigen Sie uns und vernichten Sie die empfangene E-Mail.
Vielen Dank.
This e-mail may contain trade secrets or privileged, undisclosed, or otherwise confidential information. If you have received
this e-mail in error, you are hereby notified that any review, copying, or distribution of it is strictly prohibited. Please inform
us immediately and destroy the original transmittal.
Thank you for your cooperation
<image001.png>
<image002.jpg>
The information transmitted is intended for the person or entity to which it is addressed and may contain confidential, privileged or copyrighted material. If you receive this in error, please contact the sender and delete the material from any computer. Any views or opinions expressed are those of the author and do not necessarily represent those of Fidelity International. All e-mails may be monitored. FIL Investments International (Reg. No.1448245), FIL Investment Services (UK) Limited (Reg. No. 2016555), FIL Pensions Management (Reg. No. 2015142), Financial Administration Services Limited (Reg. No. 1629709) and FIL Wealth Management Limited (Registered. No. 06121251) are authorised and regulated in the UK by the Financial Conduct Authority. FIL Life Insurance Limited (Reg No. 3406905) is authorised in the UK by the Prudential Regulation Authority and regulated in the UK by the Financial Conduct Authority and the Prudential Regulation Authority. Registered offices at Beech Gate, Millfield Lane, Lower Kingswood, Tadworth, Surrey KT20 6RP.
Le 4 août 2022 à 10:54, Delgado, Carlos via lists.cloudfoundry.org <carlos.delgado02=sap.com@...> a écrit :Hello team,I am interested to know about communications whenever a new buildpack is deployed and available in AWS cflinuxfs3 stack, in order to adapt our projects timely fashion, I am interested in Nodejs buildpack in particular, since a new version has been released recently that removed Node 12 and affected our deployments.Do you know by any chance if such communication exists?Many thanks,BR.Carlos Delgado
DevOps Lead, Customer Success Automation ES
SAP ESPAÑA, S.A. Torre Diagonal Mar - B1 C/, 08019 Barcelona, SpainPflichtangaben/Mandatory Disclosure Statement:Diese E-Mail kann Betriebs- oder Geschäftsgeheimnisse oder sonstige vertrauliche Informationen enthalten. Sollten Siediese E-Mail irrtümlich erhalten haben, ist Ihnen eine Kenntnisnahme des Inhalts, eine Vervielfältigung oder Weitergabe derE-Mail ausdrücklich untersagt. Bitte benachrichtigen Sie uns und vernichten Sie die empfangene E-Mail.Vielen Dank.This e-mail may contain trade secrets or privileged, undisclosed, or otherwise confidential information. If you have receivedthis e-mail in error, you are hereby notified that any review, copying, or distribution of it is strictly prohibited. Please informus immediately and destroy the original transmittal.Thank you for your cooperation<image001.png><image002.jpg>
Hello all,Cloud Foundry Day has been added to KubeCon registration and the schedule. If you haven't registered yet, please do! If you have already registered for Kubecon, prior to CF Day being added, you can now edit your registration and add CF Day.KubeCon registration prices increase on August 11th.CFP for Cloud Foundry Day is now open, closing August 25th.If you're interested in joining the program committee, let us know here.If you're interested in sponsoring Cloud Foundry Day, please let me know.Looking forward to seeing you all soon!--Chris ClarkProgram ManagerCloud Foundry Foundation
Hello team,
I am interested to know about communications whenever a new buildpack is deployed and available in AWS cflinuxfs3 stack, in order to adapt our projects timely fashion, I am interested in Nodejs buildpack in particular, since a new version has been released recently that removed Node 12 and affected our deployments.
Do you know by any chance if such communication exists?
Many thanks,
BR.
Carlos Delgado
DevOps Lead, Customer Success Automation ES
SAP ESPAÑA, S.A.
Torre Diagonal Mar - B1 C/, 08019 Barcelona, Spain
T +34 93 483-3238, M +34 678 684650, E carlos.delgado02@...
Pflichtangaben/Mandatory Disclosure Statement:
Diese E-Mail kann Betriebs- oder Geschäftsgeheimnisse oder sonstige vertrauliche Informationen enthalten. Sollten Sie
diese E-Mail irrtümlich erhalten haben, ist Ihnen eine Kenntnisnahme des Inhalts, eine Vervielfältigung oder Weitergabe der
E-Mail ausdrücklich untersagt. Bitte benachrichtigen Sie uns und vernichten Sie die empfangene E-Mail.
Vielen Dank.
This e-mail may contain trade secrets or privileged, undisclosed, or otherwise confidential information. If you have received
this e-mail in error, you are hereby notified that any review, copying, or distribution of it is strictly prohibited. Please inform
us immediately and destroy the original transmittal.
Thank you for your cooperation
Hello folks!Postponing this month's CAB call to accommodate speakers. Will announce the new day/date/time shortly.Apologies for the inconvenience.Regards,Ram
Hello all,
We are very happy to announce that, after a long three-year hiatus from in-person events, we’ll be holding a one-day Cloud Foundry event on Tuesday October 25th at KubeCon NA in Detroit.
In the next two weeks, we’ll be announcing a Call for Proposals, sponsorship details, and more, but in the meantime I encourage you to all take a look at the main KubeCon site and book your travel plans!
The Cloud Foundry Foundation will also be a sponsor of KubeCon, and will have a booth on the main floor Wed October 26th – Friday October 28th, where we will primarily highlight both Korifi and Paketo Buildpacks. Looking forward to seeing you there!
This change has been successfully rolled out, we're saving 50-70% on our default deployments, yay! "bbl up" with newer bbl versions will change your default VM types catalog. If you run CATS, read on...
Newer versions of BBL starting with 8.4.91 will deploy more modern and efficient VM sizes by default. Along the way we encountered a problem where the default configuration is less reliable in passing CATS, which makes sense because there's a lot less hardware deployed. A change from CATS timeout_scale: 1 to timeout_scale: 2 fixes the issue and the CATS still pass when run in parallel with 12 nodes only about 25% slower (which is acceptable). We plan to fix CATS timeout defaults eventually such that this timeout scaling configuration option is not required.
Using the 1AZ cf-deployment ops-file, the CATS now will always fail when run in parallel due to the smaller standardized diego cell size. To work around this, BBL v8.4.93 standardizes the "medium" (4 cores, 16GB) and "large" (8 cores, 32GB) VM sizes and introduces a "medium-highmem" (4 cores, 32GB) size. These additional standard sizes give operators and CF authors additional sizes to choose from for diego cells, such as this newly introduced ops file designed to make parallel CATS testing fast+reliable in a single-AZ minimal configuration.
Newer versions of BBL starting with 8.4.91 will deploy more modern and efficient VM sizes by default. Along the way we encountered a problem where the default configuration is less reliable in passing CATS, which makes sense because there's a lot less hardware deployed. A change from CATS timeout_scale: 1 to timeout_scale: 2 fixes the issue and the CATS still pass when run in parallel with 12 nodes only about 25% slower (which is acceptable). We plan to fix CATS timeout defaults eventually such that this timeout scaling configuration option is not required.
Using the 1AZ cf-deployment ops-file, the CATS now will always fail when run in parallel due to the smaller standardized diego cell size. To work around this, BBL v8.4.93 standardizes the "medium" (4 cores, 16GB) and "large" (8 cores, 32GB) VM sizes and introduces a "medium-highmem" (4 cores, 32GB) size. These additional standard sizes give operators and CF authors additional sizes to choose from for diego cells, such as this newly introduced ops file designed to make parallel CATS testing fast+reliable in a single-AZ minimal configuration.
You should be able to join the Cloud Foundry Slack workspace here: https://slack.cloudfoundry.org/
Hope that helps - please let me know if you run into any issues.
Hi Guys,I'm trying to connect to the cloud-foundry slack channel, but i cant seem to manage that.I have an account on slack, but cant seem to pass the specific channel registration.Can you suggest what do I need to sdo to be able to view/query your channel?Regards,Zac.