Need to setup gpg-agent first, on OSX I use keychain (it also does ssh-agent)
$ brew info keychain
keychain: stable 2.8.5
User-friendly front-end to ssh-agent(1)
https://www.funtoo.org/Keychain
/usr/local/Cellar/keychain/2.8.5 (7 files, 108.5KB) *Based off https://palantir.quip.com/pzRwAVr1bpzf
Pro-tip: look through the github diff between the previous release to see what's changed. The commit titles should give an outline of what's happened.
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| title: 'Animated Scroll View Item', | |
| debugShowCheckedModeBanner: false, |
| # Sets CORS headers for request from example1.com and example2.com pages | |
| # for both SSL and non-SSL | |
| SetEnvIf Origin "^https?://[^/]*(example1|example2)\.com$" ORIGIN=$0 | |
| Header set Access-Control-Allow-Origin %{ORIGIN}e env=ORIGIN | |
| Header set Access-Control-Allow-Credentials "true" env=ORIGIN | |
| # Always set Vary: Origin when it's possible you may send CORS headers | |
| Header merge Vary Origin |
| apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| name: quorum-node | |
| spec: | |
| selector: | |
| app: quorum-node | |
| type: ClusterIP | |
| clusterIP: 10.100.10.1 | |
| ports: |
| apiVersion: apps/v1 | |
| kind: StatefulSet | |
| metadata: | |
| name: quorum-node | |
| labels: | |
| app: quorum-node | |
| spec: | |
| replicas: 1 | |
| selector: | |
| matchLabels: |
| { | |
| ... | |
| "peer": [ | |
| { | |
| "url": "http://10.100.10.1:9001" | |
| } | |
| ], | |
| ... | |
| } |
| apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| name: quorum-node | |
| spec: | |
| selector: | |
| app: quorum-node | |
| type: ClusterIP | |
| clusterIP: 10.100.10.2 | |
| ports: |
| apiVersion: apps/v1 | |
| kind: StatefulSet | |
| metadata: | |
| name: quorum-node | |
| labels: | |
| app: quorum-node | |
| spec: | |
| replicas: 1 | |
| selector: | |
| matchLabels: |
| #!/bin/bash | |
| kubectl create configmap postgres-jdbc-driver --from-file ./postgresql-42.2.5.jar |