-
Kubernetes secrets to a dotenv (.env) file
For dumb reasons, I recently needed to be able to quickly setup a local environment with secrets loaded from a kubernetes instance. After manually copying/pasting/decoding a few times, I decided to write a quick script to do it for me.
The following script grabs a kubernetes secrets file (
${SECRET}
) from kube, decodes each key/value pair and then appends them to a.env
file.Prerequisites: jq, kubectl
The above script invokes
jq
twice, which was a quick and dirty workaround to get it working under alpine’s ash, in addition to bash. -
Typescript migration headaches
I had the pleasure of migrating an existing codebase from straight nodejs to Typescript. Here’s a few of the headaches/gotchas I ran into.
Extending from Error breaks things
The following custom error class resulted in an error complaining about
instanceof
:Microsoft explain the issue and point out a simple fix in their Breaking Changes list
Mocha not picking up sub directories with –recursive
With a test structure like:
running
mocha --recursive test/**/*.spec.ts
will only see mocha pickup tests inapp.spec.ts
, despite the--recursive
option being set.As ScottFreeCode points out the solution is to quote the glob to avoid having the shell interpret the **.
Eg.
mocha --recursive "test/**/*.spec.ts"
Typescript compiler will not touch non-ts/js files
There’s no built in mechanism to have the compiler copy non-typescript/javascript files, such as
.json
schemas to thedist
directory. This instead needs to be done separately.With only a few files to copy I ended up creating a simple bin script to copy the files before running
tsc
.Sequelize unexpected token in map file error
A fairly common pattern to follow when using Sequelize is to load all model files defined in a particular directory, with code like:
This works fine with javascript, but will cause a runtime
Unexpected token
with Typescript when map file generation is turned on. Any code loading files should be modified to explicitly check the extension. In this case, we want to exclude any*.map.js
files from being loaded.More details can be found on this TypeScript github issue.
Cannot redeclare block-scoped variable
With a codebase split up amongst a number of files, Typescript instantly complained about
Cannot redeclare block-scoped variable
whenever attempting to load a local file.The solution is to ensure each file exported every function/variable used in other files.
-
Run Rails tests on Gitlab CI with a Postgres database
Gitlab CI can be used to run rails tests on every push. It’s pretty straight forward to setup.
First create a
.gitlab-ci.yml
file:The
before_script
installs everything we need to run the tests.test
job creates the database and executes the tests.Next, create a gitlab specific database config
config/database-gitlab.yml
to connect to the database setup earlier.Now the tests will be run on each push!
- Older posts Newer posts