Skip to content

Instantly share code, notes, and snippets.

View andreasevers's full-sized avatar

Andreas Evers andreasevers

  • Brussels, Belgium
View GitHub Profile
openapi: 3.0.0
servers:
- description: RS Reporter Production API
url: https://reporter.rs.korfinancial.com
- description: RS Reporter Integration API
url: https://reporter.rs.int.korfinancial.com
info:
x-audience: external-public
x-api-id: 6FC2087B-10B8-4543-9908-FC93835AC5F4
description: Provides services for managing and running reports within RS
openapi: 3.0.0
servers:
- description: RS Provisioning Production API
url: https://provisioning.rs.korfinancial.com
- description: RS Provisioning Integration API
url: https://provisioning.rs.int.korfinancial.com
info:
x-audience: external-public
x-api-id: 88522688-caeb-47f6-9e7e-bac59f52e67a
description: Manages the provisioning of client data and configurations
openapi: 3.0.0
servers:
- description: RS Pre-Validations API
url: "https://pre-validations.rs<placeholder>.korfinancial.com"
info:
x-audience: external-public
x-api-id: 88522688-caeb-47f6-9e7e-bac59f52e67a
description: Provides services for querying regulatory messages
openapi: 3.0.0
servers:
- description: RS Configurations API
url: https://translations.rs.demo.korfinancial.com
info:
x-audience: external-public
x-api-id: 88522688-caeb-47f6-9e7e-bac59f52e67a
description: Provides services managing fields and rules
version: 1.0.0
title: RS Configurations API
@andreasevers
andreasevers / spinnaker-demo.md
Last active February 19, 2018 17:21
Demo Spinnaker environment on GKE

Possible issues with halyard deployment might require you to help it along with some manual pod and rs management:

Sometimes when deployments fail, new deployments fail due to insufficient memory.
In this case pods get Evicted continuously, and need cleanup:
kubectl get pods -n spinnaker | grep Evicted | awk '{print $1}' | xargs kubectl delete pod -n spinnaker

Find all old (in this example old is v008) pods & rs which haven't scaled down to 0 yet, and scale them down:
kubectl get rs -n spinnaker | grep v008 | awk '{print $1}' | xargs echo
kubectl get rs -n spinnaker | grep v008 | awk '{print $1}' | xargs kubectl scale rs --replicas=0 -n spinnaker