Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/bump component versions #29

Merged
merged 8 commits into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GHCR_PUSH_TOKEN }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Container Image to GitHub Container Repository
uses: docker/build-push-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GHCR_PUSH_TOKEN }}
password: ${{ secrets.GITHUB_TOKEN }}

- uses: docker/build-push-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.7-alpine
FROM ruby:3.1.4-alpine

ARG CIINABOX_VERSION='*'

Expand Down
6 changes: 3 additions & 3 deletions ciinabox.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.required_ruby_version = '>= 2.7.0'
spec.add_dependency "thor", "~> 0.19"
spec.required_ruby_version = '>= 3.1.0'
spec.add_dependency "thor", "~> 1.2", ">= 1.2", "< 2"
spec.add_dependency "terminal-table", '~> 1', '<2'
spec.add_dependency 'cfhighlander', '~>0.12', '<1'
spec.add_dependency 'cfhighlander', '~>0.13.4', '<1'
spec.add_runtime_dependency 'aws-sdk-core', '~> 3','<4'
spec.add_runtime_dependency 'aws-sdk-s3', '~> 1', '<2'
spec.add_runtime_dependency 'aws-sdk-ec2', '~> 1', '<2'
Expand Down
24 changes: 12 additions & 12 deletions lib/ciinabox/templates/ciinabox.cfhighlander.rb.tt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CfhighlanderTemplate do
ComponentDistribution "s3://#{source_bucket}/cloudformation/ciinabox/#{ciinabox_name}"
ComponentVersion "#{Ciinabox::VERSION}"

Component template: 'vpc-v2@0.9.0', name: 'vpc', config: vpc do
Component template: 'vpc-v2@0.10.3', name: 'vpc', config: vpc do
parameter name: 'EnvironmentName', value: "#{ciinabox_name}"
parameter name: 'EnvironmentType', value: 'development'
parameter name: 'DnsDomain', value: "#{root_domain}"
Expand All @@ -23,14 +23,14 @@ CfhighlanderTemplate do

full_zone = vpc['create_hosted_zone'] ? "#{ciinabox_name}.#{root_domain}" : "#{root_domain}"

Component template: '[email protected].0', name: 'acm' do
Component template: '[email protected].4', name: 'acm' do
parameter name: 'EnvironmentName', value: "#{ciinabox_name}"
parameter name: 'EnvironmentType', value: 'development'
parameter name: 'DomainName', value: "*.#{full_zone}"
parameter name: 'CrossAccountDNSZoneIAMRole', value: ''
end

Component template: 'application-loadbalancer@0.4.2', name: 'loadbalancer', config: loadbalancer do
Component template: 'application-loadbalancer@0.5.0', name: 'loadbalancer', config: loadbalancer do
parameter name: 'EnvironmentName', value: "#{ciinabox_name}"
parameter name: 'EnvironmentType', value: 'development'
parameter name: 'DnsDomain', value: "#{root_domain}"
Expand All @@ -50,17 +50,17 @@ CfhighlanderTemplate do
end
end

Component template: 'keypair@1.1.0', name: 'keypair' do
Component template: 'keypair@1.2.1', name: 'keypair' do
parameter name: 'KeyPairName', value: "#{ciinabox_name}"
parameter name: 'SSMParameterPath', value: "/ciinabox/keypair"
end

Component template: '[email protected].0', name: 'servicediscovery', config: { namespace: "${EnvironmentName}.ciinabox" } do
Component template: '[email protected].1', name: 'servicediscovery', config: { namespace: "${EnvironmentName}.ciinabox" } do
parameter name: 'EnvironmentName', value: "#{ciinabox_name}"
parameter name: 'EnvironmentType', value: 'development'
end

Component template: 'github:base2services/hl-component-jcasc-pipeline#1.0.0', name: 'jcasc', config: jcasc do
Component template: 'github:base2services/hl-component-jcasc-pipeline#1.1.0', name: 'jcasc', config: jcasc do
parameter name: 'EnvironmentName', value: "#{ciinabox_name}"
parameter name: 'EnvironmentType', value: 'development'
parameter name: 'VPC', value: cfout('vpc.VPCId')
Expand All @@ -71,12 +71,12 @@ CfhighlanderTemplate do
parameter name: 'JenkinsUser', value: 'ciinabox'
end

Component template: 'github:base2services/hl-component-assume-role-mfa#0.2.0', name: 'mfa', config: mfa do
Component template: 'github:base2services/hl-component-assume-role-mfa#0.2.1', name: 'mfa', config: mfa do
parameter name: 'EnvironmentName', value: "#{ciinabox_name}"
parameter name: 'EnvironmentType', value: 'development'
end

Component template: 'ecs-v2@0.1.1', name: 'ecs', config: ecs do
Component template: 'ecs-v2@0.2.3', name: 'ecs', config: ecs do
parameter name: 'EnvironmentName', value: "#{ciinabox_name}"
parameter name: 'EnvironmentType', value: 'development'
parameter name: 'KeyName', value: cfout('keypair.KeyPair')
Expand All @@ -95,7 +95,7 @@ CfhighlanderTemplate do
parameter name: 'ContainerInsights', value: 'disabled'
end

Component template: 'github:base2services/hl-component-ciinabox-efs#0.2.0', name: 'efs', config: efs do
Component template: 'github:base2services/hl-component-ciinabox-efs#0.2.1', name: 'efs', config: efs do
parameter name: 'EnvironmentName', value: "#{ciinabox_name}"
parameter name: 'EnvironmentType', value: 'development'
parameter name: 'VolumeName', value: "/#{ciinabox_name}-ciinabox-jenkins-master"
Expand All @@ -105,7 +105,7 @@ CfhighlanderTemplate do
parameter name: 'VPCCidr', value: cfout('vpc.VPCCidr')
end

Component template: 'fargate-v2@0.7.3', name: 'jenkins', config: jenkins do
Component template: 'fargate-v2@0.8.2', name: 'jenkins', config: jenkins do
parameter name: 'EnvironmentName', value: "#{ciinabox_name}"
parameter name: 'EnvironmentType', value: 'development'
parameter name: 'VPCId', value: cfout('vpc.VPCId')
Expand All @@ -129,7 +129,7 @@ CfhighlanderTemplate do
end
end

Component template: 'github:base2services/hl-component-jenkins-ec2-agents#0.3.1', name: 'ec2agents', config: ec2agents do
Component template: 'github:base2services/hl-component-jenkins-ec2-agents#0.3.2', name: 'ec2agents', config: ec2agents do
parameter name: 'EnvironmentName', value: "#{ciinabox_name}"
parameter name: 'EnvironmentType', value: 'development'
parameter name: 'S3Bucket', value: "#{source_bucket}"
Expand All @@ -146,7 +146,7 @@ CfhighlanderTemplate do

versions = config.fetch('version', {})

Component template: 'ecs-service@2.12.0', name: service, config: config['service'] do
Component template: 'ecs-service@2.17.0', name: service, config: config['service'] do
parameter name: 'EnvironmentName', value: "#{ciinabox_name}"
parameter name: 'EnvironmentType', value: 'development'
parameter name: 'NetworkPrefix', value: '10'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CfhighlanderTemplate do
ComponentParam 'VPCCidr'
end

Component template: 'route53-zone@1.4.0', name: 'intzone', config: internal_zone, render: Inline do
Component template: 'route53-zone@1.5.0', name: 'intzone', config: internal_zone, render: Inline do
parameter name: 'CreateZone', value: 'true'
parameter name: 'RootDomainName', value: Ref('RootDomainName')
parameter name: 'AddNSRecords', value: 'true'
Expand All @@ -20,7 +20,7 @@ CfhighlanderTemplate do
parameter name: 'AlternativeNames', value: ''
end

Component template: 'application-loadbalancer@0.4.2', name: 'intalb', config: internal_loadbalancer, render: Inline do
Component template: 'application-loadbalancer@0.5.0', name: 'intalb', config: internal_loadbalancer, render: Inline do
parameter name: 'SslCertId', value: cfout('intcert.CertificateArn')
parameter name: 'SubnetIds', value: Ref('SubnetIds')
parameter name: 'VPCId', value: Ref('VPCId')
Expand Down
2 changes: 1 addition & 1 deletion lib/ciinabox/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Ciinabox
VERSION = "0.8.7".freeze
VERSION = "0.8.8".freeze
CHANGE_SET_VERSION = VERSION.gsub('.', '-').freeze
end
Loading