mirror of
https://github.com/puppetlabs/vmpooler-deployment.git
synced 2026-01-26 03:28:41 -05:00
Merge pull request #84 from puppetlabs/bump_vsphere
[WIP] Bump vmpooler-provider-vsphere
This commit is contained in:
commit
1c8447f5a0
4 changed files with 71 additions and 48 deletions
|
|
@ -100,11 +100,14 @@ Helm charts are hosted with GitHub Pages since GitHub Packages does not support
|
||||||
1. Update the "appVersion" key in `helm-charts/vmpooler/Chart.yaml` to the docker image tag that was generated by opening a pull request.
|
1. Update the "appVersion" key in `helm-charts/vmpooler/Chart.yaml` to the docker image tag that was generated by opening a pull request.
|
||||||
2. Update the "version" key to a pre-release tag, something like "x.y.z-rc.1", then run `./build-chart` to build the chart locally, and upload it to your desired location.
|
2. Update the "version" key to a pre-release tag, something like "x.y.z-rc.1", then run `./build-chart` to build the chart locally, and upload it to your desired location.
|
||||||
|
|
||||||
|
Artifactory Example:
|
||||||
|
`curl -H 'X-JFrog-Art-Api:<YOUR_API_KEY>' -T vmpooler-x.y.z-rc.1.tgz "https://artifactory.example.com/artifactory/helm__local/vmpooler-x.y.z-rc.1.tgz"`
|
||||||
|
|
||||||
## Releasing
|
## Releasing
|
||||||
|
|
||||||
Create a GitHub tag and release, publish a new docker image, and helm chart by opening a release prep pull request and running the release action:
|
Create a GitHub tag and release, publish a new docker image, and helm chart by opening a release prep pull request and running the release action:
|
||||||
|
|
||||||
1. Bump the "appVersion" key in `helm-charts/vmpooler/Chart.yaml` appropriately based on changes to `docker/Gemfile` abd `docker/Gemfile.lock` in merged pull requests since the last release.
|
1. Bump the "appVersion" key in `helm-charts/vmpooler/Chart.yaml` appropriately based on changes to `docker/Gemfile` and `docker/Gemfile.lock` in merged pull requests since the last release.
|
||||||
2. Bump the "version" key in `helm-charts/vmpooler/Chart.yaml` appropriately based on changes to the chart itself and increments of the "appVersion" in merged pull requests since the last release.
|
2. Bump the "version" key in `helm-charts/vmpooler/Chart.yaml` appropriately based on changes to the chart itself and increments of the "appVersion" in merged pull requests since the last release.
|
||||||
3. Run `./update-changelog` to update `CHANGELOG.md`.
|
3. Run `./update-changelog` to update `CHANGELOG.md`.
|
||||||
4. Commit and push changes to a new branch, then open a pull request against `main` and be sure to add the "maintenance" label.
|
4. Commit and push changes to a new branch, then open a pull request against `main` and be sure to add the "maintenance" label.
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
# RUN:
|
# RUN:
|
||||||
# docker run -e VMPOOLER_CONFIG -p 80:4567 -it vmpooler
|
# docker run -e VMPOOLER_CONFIG -p 80:4567 -it vmpooler
|
||||||
|
|
||||||
FROM amd64/jruby:9.3.6-jdk
|
FROM jruby:9.3.6-jdk
|
||||||
|
|
||||||
LABEL org.opencontainers.image.description "VMPooler plus all known providers"
|
LABEL org.opencontainers.image.description "VMPooler plus all known providers"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
|
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
|
||||||
|
|
||||||
gem 'vmpooler', '~> 2.4'
|
gem 'vmpooler', '~> 2.4'
|
||||||
gem 'vmpooler-provider-ec2', '~> 0.0.1'
|
# Remove temporarily until a stable minor release is published
|
||||||
|
# gem 'vmpooler-provider-ec2', '~> 0.0.1'
|
||||||
gem 'vmpooler-provider-gce', '~> 0.4'
|
gem 'vmpooler-provider-gce', '~> 0.4'
|
||||||
gem 'vmpooler-provider-vsphere', '~> 1.6'
|
gem 'vmpooler-provider-vsphere', '~> 2.0'
|
||||||
|
|
||||||
# For development install via a git branch use something like:
|
# For development install via a git branch use something like:
|
||||||
# gem 'vmpooler', git: 'https://github.com/puppetlabs/vmpooler.git', branch: 'my-feature'
|
# gem 'vmpooler', git: 'https://github.com/puppetlabs/vmpooler.git', branch: 'my-feature'
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,33 @@
|
||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
addressable (2.8.0)
|
addressable (2.8.1)
|
||||||
public_suffix (>= 2.0.2, < 5.0)
|
public_suffix (>= 2.0.2, < 6.0)
|
||||||
bindata (2.4.10)
|
aws-eventstream (1.2.0)
|
||||||
|
aws-partitions (1.701.0)
|
||||||
|
aws-sdk-core (3.170.0)
|
||||||
|
aws-eventstream (~> 1, >= 1.0.2)
|
||||||
|
aws-partitions (~> 1, >= 1.651.0)
|
||||||
|
aws-sigv4 (~> 1.5)
|
||||||
|
jmespath (~> 1, >= 1.6.1)
|
||||||
|
aws-sdk-ec2 (1.361.0)
|
||||||
|
aws-sdk-core (~> 3, >= 3.165.0)
|
||||||
|
aws-sigv4 (~> 1.1)
|
||||||
|
aws-sigv4 (1.5.2)
|
||||||
|
aws-eventstream (~> 1, >= 1.0.2)
|
||||||
|
bindata (2.4.14)
|
||||||
builder (3.2.4)
|
builder (3.2.4)
|
||||||
concurrent-ruby (1.1.10)
|
concurrent-ruby (1.2.0)
|
||||||
connection_pool (2.2.5)
|
connection_pool (2.3.0)
|
||||||
declarative (0.0.20)
|
declarative (0.0.20)
|
||||||
deep_merge (1.2.2)
|
deep_merge (1.2.2)
|
||||||
faraday (2.3.0)
|
faraday (2.7.4)
|
||||||
faraday-net_http (~> 2.0)
|
faraday-net_http (>= 2.0, < 3.1)
|
||||||
ruby2_keywords (>= 0.0.4)
|
ruby2_keywords (>= 0.0.4)
|
||||||
faraday-net_http (2.0.3)
|
faraday-net_http (3.0.2)
|
||||||
google-apis-compute_v1 (0.44.0)
|
google-apis-compute_v1 (0.60.0)
|
||||||
google-apis-core (>= 0.7, < 2.a)
|
google-apis-core (>= 0.9.1, < 2.a)
|
||||||
google-apis-core (0.7.0)
|
google-apis-core (0.10.0)
|
||||||
addressable (~> 2.5, >= 2.5.1)
|
addressable (~> 2.5, >= 2.5.1)
|
||||||
googleauth (>= 0.16.2, < 2.a)
|
googleauth (>= 0.16.2, < 2.a)
|
||||||
httpclient (>= 2.8.1, < 3.a)
|
httpclient (>= 2.8.1, < 3.a)
|
||||||
|
|
@ -24,8 +36,8 @@ GEM
|
||||||
retriable (>= 2.0, < 4.a)
|
retriable (>= 2.0, < 4.a)
|
||||||
rexml
|
rexml
|
||||||
webrick
|
webrick
|
||||||
google-apis-dns_v1 (0.23.0)
|
google-apis-dns_v1 (0.29.0)
|
||||||
google-apis-core (>= 0.7, < 2.a)
|
google-apis-core (>= 0.9.1, < 2.a)
|
||||||
google-cloud-core (1.6.0)
|
google-cloud-core (1.6.0)
|
||||||
google-cloud-env (~> 1.0)
|
google-cloud-env (~> 1.0)
|
||||||
google-cloud-errors (~> 1.0)
|
google-cloud-errors (~> 1.0)
|
||||||
|
|
@ -36,8 +48,8 @@ GEM
|
||||||
zonefile (~> 1.04)
|
zonefile (~> 1.04)
|
||||||
google-cloud-env (1.6.0)
|
google-cloud-env (1.6.0)
|
||||||
faraday (>= 0.17.3, < 3.0)
|
faraday (>= 0.17.3, < 3.0)
|
||||||
google-cloud-errors (1.2.0)
|
google-cloud-errors (1.3.0)
|
||||||
googleauth (1.1.3)
|
googleauth (1.2.0)
|
||||||
faraday (>= 0.17.3, < 3.a)
|
faraday (>= 0.17.3, < 3.a)
|
||||||
jwt (>= 1.4, < 3.0)
|
jwt (>= 1.4, < 3.0)
|
||||||
memoist (~> 0.16)
|
memoist (~> 0.16)
|
||||||
|
|
@ -45,18 +57,20 @@ GEM
|
||||||
os (>= 0.9, < 2.0)
|
os (>= 0.9, < 2.0)
|
||||||
signet (>= 0.16, < 2.a)
|
signet (>= 0.16, < 2.a)
|
||||||
httpclient (2.8.3)
|
httpclient (2.8.3)
|
||||||
json (2.6.2-java)
|
jmespath (1.6.2)
|
||||||
jwt (2.4.1)
|
json (2.6.3-java)
|
||||||
|
jwt (2.6.0)
|
||||||
memoist (0.16.2)
|
memoist (0.16.2)
|
||||||
mini_mime (1.1.2)
|
mini_mime (1.1.2)
|
||||||
multi_json (1.15.0)
|
multi_json (1.15.0)
|
||||||
mustermann (2.0.2)
|
mustermann (2.0.2)
|
||||||
ruby2_keywords (~> 0.0.1)
|
ruby2_keywords (~> 0.0.1)
|
||||||
net-ldap (0.17.1)
|
net-ldap (0.17.1)
|
||||||
|
net-ssh (7.0.1)
|
||||||
nio4r (2.5.8-java)
|
nio4r (2.5.8-java)
|
||||||
nokogiri (1.13.8-java)
|
nokogiri (1.13.10-java)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
opentelemetry-api (1.0.2)
|
opentelemetry-api (1.1.0)
|
||||||
opentelemetry-common (0.19.6)
|
opentelemetry-common (0.19.6)
|
||||||
opentelemetry-api (~> 1.0)
|
opentelemetry-api (~> 1.0)
|
||||||
opentelemetry-exporter-jaeger (0.20.1)
|
opentelemetry-exporter-jaeger (0.20.1)
|
||||||
|
|
@ -81,15 +95,15 @@ GEM
|
||||||
opentelemetry-api (~> 1.0)
|
opentelemetry-api (~> 1.0)
|
||||||
opentelemetry-common (~> 0.19.3)
|
opentelemetry-common (~> 0.19.3)
|
||||||
opentelemetry-instrumentation-base (~> 0.19.0)
|
opentelemetry-instrumentation-base (~> 0.19.0)
|
||||||
opentelemetry-registry (0.1.0)
|
opentelemetry-registry (0.2.0)
|
||||||
opentelemetry-api (~> 1.0.1)
|
opentelemetry-api (~> 1.1)
|
||||||
opentelemetry-resource_detectors (0.19.1)
|
opentelemetry-resource_detectors (0.19.1)
|
||||||
google-cloud-env
|
google-cloud-env
|
||||||
opentelemetry-sdk
|
opentelemetry-sdk
|
||||||
opentelemetry-sdk (1.1.0)
|
opentelemetry-sdk (1.2.0)
|
||||||
opentelemetry-api (~> 1.0)
|
opentelemetry-api (~> 1.1)
|
||||||
opentelemetry-common (~> 0.19.3)
|
opentelemetry-common (~> 0.19.3)
|
||||||
opentelemetry-registry (~> 0.1)
|
opentelemetry-registry (~> 0.2)
|
||||||
opentelemetry-semantic_conventions
|
opentelemetry-semantic_conventions
|
||||||
opentelemetry-semantic_conventions (1.8.0)
|
opentelemetry-semantic_conventions (1.8.0)
|
||||||
opentelemetry-api (~> 1.0)
|
opentelemetry-api (~> 1.0)
|
||||||
|
|
@ -97,20 +111,20 @@ GEM
|
||||||
os (1.1.4)
|
os (1.1.4)
|
||||||
pickup (0.0.11)
|
pickup (0.0.11)
|
||||||
prometheus-client (2.1.0)
|
prometheus-client (2.1.0)
|
||||||
public_suffix (4.0.7)
|
public_suffix (5.0.1)
|
||||||
puma (5.6.4-java)
|
puma (5.6.5-java)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
racc (1.6.0-java)
|
racc (1.6.2-java)
|
||||||
rack (2.2.4)
|
rack (2.2.6.2)
|
||||||
rack-protection (2.2.2)
|
rack-protection (2.2.4)
|
||||||
rack
|
rack
|
||||||
rake (13.0.6)
|
rake (13.0.6)
|
||||||
rbvmomi (3.0.0)
|
rbvmomi2 (3.6.0)
|
||||||
builder (~> 3.2)
|
builder (~> 3.2)
|
||||||
json (~> 2.3)
|
json (~> 2.3)
|
||||||
nokogiri (~> 1.10)
|
nokogiri (~> 1.12, >= 1.12.5)
|
||||||
optimist (~> 3.0)
|
optimist (~> 3.0)
|
||||||
redis (4.7.1)
|
redis (4.8.0)
|
||||||
representable (3.2.0)
|
representable (3.2.0)
|
||||||
declarative (< 0.1.0)
|
declarative (< 0.1.0)
|
||||||
trailblazer-option (>= 0.1.1, < 0.2.0)
|
trailblazer-option (>= 0.1.1, < 0.2.0)
|
||||||
|
|
@ -123,15 +137,15 @@ GEM
|
||||||
faraday (>= 0.17.5, < 3.a)
|
faraday (>= 0.17.5, < 3.a)
|
||||||
jwt (>= 1.5, < 3.0)
|
jwt (>= 1.5, < 3.0)
|
||||||
multi_json (~> 1.10)
|
multi_json (~> 1.10)
|
||||||
sinatra (2.2.2)
|
sinatra (2.2.4)
|
||||||
mustermann (~> 2.0)
|
mustermann (~> 2.0)
|
||||||
rack (~> 2.2)
|
rack (~> 2.2)
|
||||||
rack-protection (= 2.2.2)
|
rack-protection (= 2.2.4)
|
||||||
tilt (~> 2.0)
|
tilt (~> 2.0)
|
||||||
spicy-proton (2.1.14)
|
spicy-proton (2.1.15)
|
||||||
bindata (~> 2.3)
|
bindata (~> 2.3)
|
||||||
statsd-ruby (1.5.0)
|
statsd-ruby (1.5.0)
|
||||||
thrift (0.16.0)
|
thrift (0.17.0)
|
||||||
tilt (2.0.11)
|
tilt (2.0.11)
|
||||||
trailblazer-option (0.1.2)
|
trailblazer-option (0.1.2)
|
||||||
uber (0.1.0)
|
uber (0.1.0)
|
||||||
|
|
@ -156,13 +170,17 @@ GEM
|
||||||
sinatra (~> 2.0)
|
sinatra (~> 2.0)
|
||||||
spicy-proton (~> 2.1)
|
spicy-proton (~> 2.1)
|
||||||
statsd-ruby (~> 1.4)
|
statsd-ruby (~> 1.4)
|
||||||
vmpooler-provider-gce (0.3.0)
|
vmpooler-provider-ec2 (0.0.2)
|
||||||
|
aws-sdk-ec2 (~> 1)
|
||||||
|
net-ssh (>= 6.2, < 7.1)
|
||||||
|
vmpooler-provider-gce (0.4.0)
|
||||||
google-apis-compute_v1 (~> 0.14)
|
google-apis-compute_v1 (~> 0.14)
|
||||||
google-cloud-dns (~> 0.35.1)
|
google-cloud-dns (~> 0.35.1)
|
||||||
googleauth (>= 0.16.2, < 1.2.0)
|
googleauth (>= 0.16.2, < 1.3.0)
|
||||||
vmpooler-provider-vsphere (1.6.0)
|
vmpooler-provider-vsphere (2.0.0)
|
||||||
rbvmomi (>= 2.1, < 4.0)
|
rbvmomi2 (>= 3.1, < 4.0)
|
||||||
webrick (1.7.0)
|
vmpooler (~> 2.4)
|
||||||
|
webrick (1.8.1)
|
||||||
zonefile (1.06)
|
zonefile (1.06)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
|
|
@ -170,8 +188,9 @@ PLATFORMS
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
vmpooler (~> 2.4)
|
vmpooler (~> 2.4)
|
||||||
vmpooler-provider-gce (~> 0.3)
|
vmpooler-provider-ec2 (~> 0.0.1)
|
||||||
vmpooler-provider-vsphere (~> 1.6)
|
vmpooler-provider-gce (~> 0.4)
|
||||||
|
vmpooler-provider-vsphere (~> 2.0)
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.3.18
|
2.4.5
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue