Thursday, December 27, 2018

Spinnaker vs Terraform

Essentially, use Terraform to set up your infrastructure and use Spinnaker to manage your deployments. You CAN use Terraform to accomplish Spinnaker tasks but it would require a lot of glue-code that is difficult to copy for other tasks. We see a lot of companies attempting to extend Terraform to do Spinnaker’s tasks when they can simply use Spinnaker.
Where Spinnaker Excels Over Terraform:
  • AMI Creation
  • Deployment strategies out of the box:
    • Highlander
    • Blue/Green (also called Red/Black)
    • Custom
    • Canary

Where Terraform Excels Over Spinnaker:

  • Non-deployment related resource creation and management
    • VPCs
    • Route 53 entries
    • Subnets
    • S3 buckets
    • SQS
    • SNS
    • Etc.
  • One time creation of resources
  • Large scale modification of resources
  • Lambda
  • Defining and managing your infrastructure as code
Source:
https://blog.armory.io/comparing-terraform-and-spinnaker/


Spinnaker

More of a deployment tool (rather than an infrastructure creation tool like terraform).
Spinnaker will be deploying updated VMs or Containers to an existing environment.
Instead of doing "hacky terraform" blue/green deploys (onetwo) or having to write a buncha "glue code" (one).

Can deploy to AWS or Kubernetes

Pipelines made of Stages
Stages can be types [infra, external, testing, control flow]
Also support for Triggers, Notifications, Expressions, Version Control and Auditing.


Source:
https://www.spinnaker.io/publications/ebook/



Next Steps:

  1. https://blog.armory.io/global-software-delivery-best-practices/
  2. https://medium.com/netflix-techblog/how-we-build-code-at-netflix-c5d9bd727f15
  3. https://medium.com/netflix-techblog/ami-creation-with-aminator-98d627ca37b0
  4. https://nebula-plugins.github.io/

Thursday, November 29, 2018

Functional Interfaces, Function Descriptor, Lambdas, Method References


A functional interface is an interface with one abstract method, but it can have any number of default and static methods. 

That one abstract method is called a function descriptor.

A lambda expression is a block of code that we can pass around to execute.

  • Like an anonymous function.
  • You can use a lambda expression in the context of a functional interface.  
  • Lambda expressions let you provide the implementation of the abstract method of a functional interface.
Capturing lamba.....

Method references.....

Monday, October 8, 2018

Bastion Hosts and SSH tunneling




Tunneling through bastion example:
https://www.urbaninsight.com/article/running-scp-through-ssh-tunnel



Bastion Pattern:


https://aws.amazon.com/quickstart/architecture/linux-bastion/