This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
docker rm -f $(docker ps -qa) | |
docker volume rm $(docker volume ls -q) | |
cleanupdirs="/var/lib/etcd /etc/kubernetes /etc/cni /opt/cni /var/lib/cni /var/run/calico /opt/rke" | |
for dir in $cleanupdirs; do | |
echo "Removing $dir" | |
rm -rf $dir | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Memory { | |
// Dummy Entity representing usual data objects | |
private static class Entity { | |
public String name; | |
public String detail; | |
public Double amount; | |
public Integer age; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"models": [ | |
{ | |
"edges": [ | |
{ | |
"id": "428252c0-6e69-11ea-a7bb-83cbb6bc6f6f", | |
"name": "e_Login", | |
"sourceVertexId": "2505cce0-6e69-11ea-a7bb-83cbb6bc6f6f", | |
"targetVertexId": "2863c4f0-6e69-11ea-a7bb-83cbb6bc6f6f" | |
}, |