This gist gives instructions to setup a Validating Admission Webhook or Mutating Admission Webhook in Kubernetes.
Heavy credits to
This gist gives instructions to setup a Validating Admission Webhook or Mutating Admission Webhook in Kubernetes.
Heavy credits to
| $ brew update | |
| $ brew install hive |
| #!/bin/bash | |
| $IPT=/sbin/iptables | |
| ################# | |
| # GENERIC INPUT # | |
| ################# | |
| $IPT --policy INPUT DROP | |
| # Drop invalid |
| 1. Stop Ambari server | |
| 2. Log on to ambari server host shell | |
| 3. Run 'psql -U ambari-server ambari' | |
| 4. Enter password **** (this password is stored in | |
| /etc/ambari-server/conf/password.dat) | |
| 5. In psql: | |
| update ambari.users set | |
| user_password='538916f8943ec225d97a9a86a2c6ec0818c1cd400e09e03b660fdaaec4af29ddbb6f2b1033b81b00' | |
| where user_name='admin' | |
| 6. Quit psql |
# Key considerations for algorithm "RSA" ≥ 2048-bit
openssl genrsa -out server.key 2048
# Key considerations for algorithm "ECDSA" ≥ secp384r1
# List ECDSA the supported curves (openssl ecparam -list_curves)| package main | |
| import ( | |
| "bufio" | |
| "crypto/aes" | |
| "crypto/cipher" | |
| "crypto/rand" | |
| "fmt" | |
| "io" | |
| "io/ioutil" |
| public class HCatInputFormat extends InputFormat<SerializableWritable<Writable>, HCatRecord> { | |
| private final org.apache.hcatalog.mapreduce.HCatInputFormat input; | |
| public HCatInputFormat() { | |
| input = new org.apache.hcatalog.mapreduce.HCatInputFormat(); | |
| } | |
| @Override | |
| public RecordReader<SerializableWritable<Writable>, HCatRecord> createRecordReader( |
| package main | |
| import ( | |
| "crypto/tls" | |
| "crypto/x509" | |
| "flag" | |
| "io/ioutil" | |
| "log" | |
| "net/http" | |
| ) |
##Reactive System Design Links
#Articles and Papers