Skip to content

Commit cb66d36

Browse files
Merge pull request #191 from digitalghost-dev/1.7.2
1.7.2
2 parents 2a3555a + bd9cf97 commit cb66d36

34 files changed

+311
-56
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ on:
3030
- main
3131

3232
env:
33-
VERSION_NUMBER: 'v1.7.1'
33+
VERSION_NUMBER: 'v1.7.2'
3434
DOCKERHUB_REGISTRY_NAME: 'digitalghostdev/poke-cli'
3535
AWS_REGION: 'us-west-2'
3636

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ builds:
1414
- windows
1515
- darwin
1616
ldflags:
17-
- -s -w -X main.version=v1.7.1
17+
- -s -w -X main.version=v1.7.2
1818

1919
archives:
2020
- formats: [ 'zip' ]

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN go mod download
88

99
COPY . .
1010

11-
RUN go build -ldflags "-X main.version=v1.7.1" -o poke-cli .
11+
RUN go build -ldflags "-X main.version=v1.7.2" -o poke-cli .
1212

1313
# build 2
1414
FROM --platform=$BUILDPLATFORM alpine:3.22

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22
<img height="250" width="350" src="pokemon.svg" alt="pokemon-logo"/>
33
<h1>Pokémon CLI</h1>
44
<img src="https://img.shields.io/github/v/release/digitalghost-dev/poke-cli?style=flat-square&logo=git&logoColor=FFCC00&label=Release%20Version&labelColor=EEE&color=FFCC00" alt="version-label">
5-
<img src="https://img.shields.io/docker/image-size/digitalghostdev/poke-cli/v1.7.1?arch=arm64&style=flat-square&logo=docker&logoColor=FFCC00&labelColor=EEE&color=FFCC00" alt="docker-image-size">
5+
<img src="https://img.shields.io/docker/image-size/digitalghostdev/poke-cli/v1.7.2?arch=arm64&style=flat-square&logo=docker&logoColor=FFCC00&labelColor=EEE&color=FFCC00" alt="docker-image-size">
66
<img src="https://img.shields.io/github/actions/workflow/status/digitalghost-dev/poke-cli/ci.yml?branch=main&style=flat-square&logo=github&logoColor=FFCC00&label=CI&labelColor=EEE&color=FFCC00" alt="ci-status-badge">
77
</div>
8+
<div align="center">
9+
<img src="https://img.shields.io/coderabbit/prs/github/digitalghost-dev/poke-cli?style=flat-square&logo=coderabbit&logoColor=FF570A&labelColor=F6F6F1&color=FF570A" alt="coderabbit-review-count-badge">
10+
</div>
811
<div align="center">
912
<img src="https://img.shields.io/github/actions/workflow/status/digitalghost-dev/poke-cli/go_test.yml?style=flat-square&logo=go&logoColor=00ADD8&label=Tests&labelColor=EEE&color=00ADD8" alt="tests-label">
1013
<img src="https://img.shields.io/github/go-mod/go-version/digitalghost-dev/poke-cli?style=flat-square&logo=Go&labelColor=EEE&color=00ADD8" alt="go-version"/>
@@ -91,11 +94,11 @@ Cloudsmith is a fully cloud-based service that lets you easily create, store, an
9194
3. Choose how to interact with the container:
9295
* Run a single command and exit:
9396
```bash
94-
docker run --rm -it digitalghostdev/poke-cli:v1.7.1 <command> [subcommand] flag]
97+
docker run --rm -it digitalghostdev/poke-cli:v1.7.2 <command> [subcommand] flag]
9598
```
9699
* Enter the container and use its shell:
97100
```bash
98-
docker run --rm -it --name poke-cli --entrypoint /bin/sh digitalghostdev/poke-cli:v1.7.1 -c "cd /app && exec sh"
101+
docker run --rm -it --name poke-cli --entrypoint /bin/sh digitalghostdev/poke-cli:v1.7.2 -c "cd /app && exec sh"
99102
# placed into the /app directory, run the program with './poke-cli'
100103
# example: ./poke-cli ability swift-swim
101104
```

card_data/infrastructure/aws/ec2/.terraform.lock.hcl

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
resource "aws_instance" "tfer--i-01dbf82e21c0da38f_dagster-webserver" {
2+
ami = "ami-0326baaa98cf958ed"
3+
instance_type = "t4g.small"
4+
key_name = "dagster-vm-key-pair"
5+
subnet_id = "subnet-04fe6e100221b27d4"
6+
vpc_security_group_ids = ["sg-04c2a30cb05044ad6", "sg-026cc204887184c98"]
7+
ebs_optimized = true
8+
monitoring = false
9+
10+
root_block_device {
11+
delete_on_termination = true
12+
}
13+
14+
tags = {
15+
Name = "dagster-webserver"
16+
}
17+
18+
tags_all = {
19+
Name = "dagster-webserver"
20+
}
21+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
output "aws_instance_tfer--i-01dbf82e21c0da38f_dagster-webserver_id" {
2+
value = "${aws_instance.tfer--i-01dbf82e21c0da38f_dagster-webserver.id}"
3+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
provider "aws" {
2+
region = "us-west-2"
3+
}
4+
5+
terraform {
6+
cloud {
7+
organization = "digitalghost-dev"
8+
9+
workspaces {
10+
project = "poke-cli"
11+
name = "ec2"
12+
}
13+
}
14+
required_providers {
15+
aws = {
16+
source = "hashicorp/aws"
17+
version = "~> 6.7.0"
18+
}
19+
}
20+
}

card_data/infrastructure/aws/rds/db_instance.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ resource "aws_db_instance" "tfer--dagster-db" {
2020
iam_database_authentication_enabled = "false"
2121
identifier = "dagster-db"
2222
instance_class = "db.t3.micro"
23-
kms_key_id = var.kms-arn-key
23+
kms_key_id = var.kms_arn_key
2424
license_model = "postgresql-license"
2525
maintenance_window = "wed:08:28-wed:08:58"
2626
manage_master_user_password = true
@@ -32,7 +32,7 @@ resource "aws_db_instance" "tfer--dagster-db" {
3232
option_group_name = "default:postgres-17"
3333
parameter_group_name = "default.postgres17"
3434
performance_insights_enabled = "true"
35-
performance_insights_kms_key_id = var.kms-arn-key
35+
performance_insights_kms_key_id = var.kms_arn_key
3636
performance_insights_retention_period = "7"
3737
port = "5432"
3838
publicly_accessible = "true"
@@ -50,5 +50,5 @@ resource "aws_db_instance" "tfer--dagster-db" {
5050
}
5151

5252
username = "postgres"
53-
vpc_security_group_ids = ["sg-026cc204887184c98"]
53+
vpc_security_group_ids = ["sg-026cc204887184c98", "sg-09ff0b46e3dd7a843"]
5454
}

card_data/infrastructure/aws/rds/db_subnet_group.tf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@ resource "aws_db_subnet_group" "tfer--poke-cli-db-subnet-group" {
22
description = "Subnet group for RDS databases"
33
name = "poke-cli-db-subnet-group"
44
region = "us-west-2"
5-
subnet_ids = ["subnet-08dae4b7aede93128", "subnet-0eeb519cf23a763bf", "subnet-04fe6e100221b27d4", "subnet-0be3aac807720c1d6"]
5+
subnet_ids = [
6+
"subnet-04fe6e100221b27d4",
7+
"subnet-0be3aac807720c1d6"
8+
]
69
}

0 commit comments

Comments
 (0)