Skip to content

Instantly share code, notes, and snippets.

View ronaknnathani's full-sized avatar

Ronak Nathani ronaknnathani

View GitHub Profile
@ronaknnathani
ronaknnathani / 10-flannel.conflist
Last active August 22, 2020 01:16
Sample flannel CNI plugin configuration. By default, it is stored at /etc/cni/net.d/10-flannel.conflist.
{
"name": "cni0",
"plugins": [
{
"type": "flannel",
"delegate": {
"ipMasq": false,
"hairpinMode": true,
"isDefaultGateway": true
}
apiVersion: apps/v1
kind: Deployment
metadata:
name: azure-vote-back
spec:
replicas: 1
selector:
matchLabels:
app: azure-vote-back
template:
#!/bin/bash
wget https://s3.amazonaws.com/redshift-downloads/drivers/RedshiftJDBC42-1.2.1.1001.jar -P ~/Downloads
mv ~/Downloads/RedshiftJDBC42-1.2.1.1001.jar /usr/local/confluent/share/java/kafka-connect-jdbc/RedshiftJDBC42-1.2.1.1001.jar
#
# Copyright 2016 Confluent Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
CREATE TABLE postgres_users
(
id INTEGER NOT NULL,
name VARCHAR(100) NOT NULL,
age INTEGER,
updated_at TIMESTAMP NOT NULL
);
##
# Copyright 2015 Confluent Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
#!/bin/bash
wget /usr/local http://packages.confluent.io/archive/3.1/confluent-oss-3.1.2-2.11.tar.gz -P ~/Downloads/
tar -zxvf ~/Downloads/confluent-oss-3.1.2-2.11.tar.gz -C ~/Downloads/
sudo mv ~/Downloads/confluent-3.1.2 /usr/local/confluent
INSERT INTO users (name, age) VALUES ('john', 26);
INSERT INTO users (name, age) VALUES ('jane', 24);
INSERT INTO users (name, age) VALUES ('julia', 25);
INSERT INTO users (name, age) VALUES ('jamie', 22);
INSERT INTO users (name, age) VALUES ('jenny', 27);
CREATE TABLE users
(
id SERIAL NOT NULL,
name VARCHAR(100) NOT NULL,
age INTEGER,
updated_at TIMESTAMP NOT NULL DEFAULT NOW(),
PRIMARY KEY(id)
);
---
key_pair: ronak-nathani
instance_type: t2.medium
region: us-west-2
security_group_id: sg-19127861
num_instances: 3
subnet_id: subnet-3a78835f
tag_key_vals:
Name: ronak-kafka-cluster
class: kafka