Skip to content

Commit

Permalink
Merge pull request #328 from fnaranjo-vmw/master
Browse files Browse the repository at this point in the history
Pin python_buildpack to version 1.8.0
  • Loading branch information
pivotal-marcela-campo authored Jun 15, 2023
2 parents 1360f1b + fc5a92c commit 12e1f92
Show file tree
Hide file tree
Showing 3 changed files with 135 additions and 135 deletions.
10 changes: 5 additions & 5 deletions sample/tile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ packages:
path: resources/app.zip
command: python app.py # This is required for python, optional for many other languages
memory: 256M # Override memory, default: 1G
buildpack: python_buildpack # Specify Buildpack for the app
buildpack: https://github.com/cloudfoundry/python-buildpack.git#v1.8.0
instances: (( .properties.app_instances.value ))

- name: tg-test-app1-auto-zip # app1, specified by source directory to test auto-zipping
Expand All @@ -278,7 +278,7 @@ packages:
path: src/app
command: python app.py # This is required for python, optional for many other languages
memory: 256M # Override memory, default: 1G
buildpack: python_buildpack # Specify Buildpack for the app
buildpack: https://github.com/cloudfoundry/python-buildpack.git#v1.8.0

- name: tg-test-binary-app # Self-contained app to test binary buildpack
type: app
Expand All @@ -295,7 +295,7 @@ packages:
path: resources/app.zip
command: python app.py # This is required for python, optional for many other languages
memory: 256M # Override memory, default: 1G
buildpack: python_buildpack
buildpack: https://github.com/cloudfoundry/python-buildpack.git#v1.8.0

- name: tg-test-app2 # App showing configurable values
type: app
Expand All @@ -312,7 +312,7 @@ packages:
command: python app.py # This is required for python, optional for many other languages
host: tg-test-app2-hostname # Override hostname, default: app name
memory: 256M # Override memory, default: 1G
buildpack: python_buildpack
buildpack: https://github.com/cloudfoundry/python-buildpack.git#v1.8.0
health_check: none # Turn off health monitoring, default: true
auto_services: # Auto-provision and bind services
- name: tg-test-broker1-service # If using a broker in the same tile, the broker must preceed the app in this file
Expand All @@ -332,7 +332,7 @@ packages:
path: resources/app.zip
command: python app.py # This is required for python, optional for many other languages
memory: 256M # Override memory, default: 1G
buildpack: python_buildpack
buildpack: https://github.com/cloudfoundry/python-buildpack.git#v1.8.0
internal_service_names:
- service1
- service2
Expand Down
Loading

0 comments on commit 12e1f92

Please sign in to comment.