kite 1.1.17 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 87ab4d0b56ccc1fda4456685a3ade9f3828a106a1977ce11d497c631c25821f9
4
- data.tar.gz: 18b52792f2755b194e91670fec3cc5b72a2cdcf2490b21df6197abe91ff8e47d
3
+ metadata.gz: 6bc2acfa2f5c8c285231e8622f4e518a6898fc7d200d664ba983bd47888249b4
4
+ data.tar.gz: 84b49c19a91a283151f8d07c8f941413cc307296763a19019e3b8922f4a378fd
5
5
  SHA512:
6
- metadata.gz: d8b6445344027f5b60e16197c4077c9d3239946430977e3c4c1587fd543e14b93a8187a6f3efa4bb9aa03b7d5ef517cbe94acbbb93dc90d9794360e1d05c96a0
7
- data.tar.gz: a04e1d50360e22c7dcbac48d03bd0e5f8f006988743022ae76768156477ab240e35c0805de1f45b123ac5814d1399d153605609aaf254ea9c4c2f4b08449579a
6
+ metadata.gz: a89ee20b506ad5b7a5abdeabed405c54f4d7e7753b6d9ecadf689ea7e58ff95b005f0208f93d2ef52cc800d8abbc326050d96fb1de9c650b7217cbede4560cf4
7
+ data.tar.gz: 4aa5031b0e38a2f531f3b9b0baf797f5debac94b3e9a257c76613c08da1b098050182306142826716daa31be9987c4caa84462c55d631d447e072b3c787054a7
data/.drone.yml CHANGED
@@ -11,18 +11,22 @@ steps:
11
11
  event:
12
12
  - pull_request
13
13
 
14
- - name: Bump and Tag
15
- image: ruby:2.6
14
+ - name: Bump and tag
15
+ image: quay.io/openware/sdk-citools:2.3.1
16
16
  environment:
17
+ BOT_USERNAME: kite-bot
18
+ BOT_NAME: Kite Bot
19
+ BOT_EMAIL: kite-bot@heliostech.fr
20
+ BRANCH_NAME: ${DRONE_BRANCH}
21
+ REPO_NAME: ${DRONE_REPO}
17
22
  GITHUB_API_KEY:
18
23
  from_secret: kite_bot_key
19
24
  commands:
20
- - ruby ci/bump.rb
25
+ - BUNDLE_GEMFILE=/sdk/Gemfile bundle exec rake --rakefile=/sdk/Rakefile ci:prebuild
21
26
  when:
22
- event:
23
- - push
24
27
  branch:
25
- - 1-1-stable
28
+ - master
29
+ - "*stable"
26
30
 
27
31
  - name: Publish to RubyGems
28
32
  image: ruby:2.6
@@ -40,3 +44,6 @@ steps:
40
44
  when:
41
45
  event:
42
46
  - tag
47
+
48
+ image_pull_secrets:
49
+ - dockerconfigjson
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.2.0
@@ -1,3 +1,3 @@
1
1
  module Kite
2
- VERSION = '1.1.17'
2
+ VERSION = '1.2.0'
3
3
  end
@@ -3,16 +3,14 @@ terraform {
3
3
  backend "gcs" {
4
4
  bucket = "<%= @cloud['gcp']['bucket_name'] %>"
5
5
  prefix = "<%= @env_name %>-terraform.tfstate"
6
- project = "<%= @cloud['gcp']['project'] %>"
7
6
  }
8
7
  }
9
8
 
10
9
  # Store .tfstate in a GCS bucket
11
10
  data "terraform_remote_state" "tfstate" {
12
11
  backend = "gcs"
13
- config {
12
+ config = {
14
13
  bucket = "<%= @cloud['gcp']['bucket_name'] %>"
15
- path = "<%= @env_name %>-terraform.tfstate"
16
- project = "<%= @cloud['gcp']['project'] %>"
14
+ prefix = "<%= @env_name %>-terraform.tfstate"
17
15
  }
18
16
  }
@@ -1,5 +1,9 @@
1
1
  provider "google" {
2
- credentials = "${file("<%= @cloud['gcp']['service_account'] %>")}"
3
- project = "<%= @cloud['gcp']['project'] %>"
4
- region = "<%= @cloud['region'] %>"
2
+ credentials = file("<%= @cloud['gcp']['service_account'] %>")
3
+ project = "<%= @cloud['gcp']['project'] %>"
4
+ region = "<%= @cloud['region'] %>"
5
+ }
6
+
7
+ terraform {
8
+ required_version = ">= 0.12"
5
9
  }
@@ -1,5 +1,5 @@
1
1
  output service_account_b64 {
2
- description = "GCloud service account key"
3
- value = "${base64encode(file("<%= @cloud['gcp']['service_account'] %>"))}"
2
+ description = "Google Cloud service account key"
3
+ value = base64encode(file("<%= @cloud['gcp']['service_account'] %>"))
4
4
  sensitive = true
5
5
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kite
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.17
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Louis Bellet
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2019-10-04 00:00:00.000000000 Z
14
+ date: 2020-02-15 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: thor
@@ -144,6 +144,7 @@ files:
144
144
  - Makefile
145
145
  - README.md
146
146
  - Rakefile
147
+ - VERSION
147
148
  - bin/concourse/check
148
149
  - bin/concourse/in
149
150
  - bin/concourse/out