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
version: '3' | |
services: | |
elasticsearch: | |
image: docker.elastic.co/elasticsearch/elasticsearch:7.2 | |
environment: | |
- cluster.name=docker-cluster | |
- bootstrap.memory_lock=true | |
- "ES_JAVA_OPTS=-Xms512m -Xmx512m" | |
ulimits: |
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
package main | |
import ( | |
"fmt" | |
"os" | |
"path/filepath" | |
) | |
func main() { | |
err := filepath.Walk("/home/go", func(path string, info os.FileInfo, err error) error { |
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
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: loadbalancer | |
spec: | |
selector: | |
app: node | |
ports: | |
- protocol: TCP |
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
$ kubectl describe po/nginx-77c5cd5446-8rcjm | |
Name: nginx-77c5cd5446-8rcjm | |
Namespace: default | |
Priority: 0 | |
PriorityClassName: <none> | |
Node: <none> | |
Labels: app=nginx | |
pod-template-hash=77c5cd5446 | |
Annotations: <none> | |
Status: Pending |
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/bash | |
ip=$1 | |
size=$2 | |
device=$3 | |
# Install certificates and Repository | |
curl "https://ppa.moosefs.com/RPM-GPG-KEY-MooseFS" > /etc/pki/rpm-gpg/RPM-GPG-KEY-MooseFS | |
curl "http://ppa.moosefs.com/MooseFS-3-el7.repo" > /etc/yum.repos.d/MooseFS.repo | |
# Install moosefs-chunkserver, fuse and others | |
yum install -y gnupg2 ca-certificates e2fsprogs xfsprogs moosefs-chunkserver | |
# Provision and mount volume |
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
// try here: https://play.golang.org/p/SChzGHXYgOU | |
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
) | |
func main() { | |
birdJson := `{"birds":[{"pigeon":"likes to perch on rocks","eagle":"bird of prey"}]}` |
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
service Node { | |
// temporarily mount the volume to a staging path | |
rpc NodeStageVolume (NodeStageVolumeRequest) | |
returns (NodeStageVolumeResponse) {} | |
// unmount the volume from staging path | |
rpc NodeUnstageVolume (NodeUnstageVolumeRequest) | |
returns (NodeUnstageVolumeResponse) {} | |
// mount the volume from staging to target path |
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
service Controller { | |
// provisions a volume | |
rpc CreateVolume (CreateVolumeRequest) | |
returns (CreateVolumeResponse) {} | |
// deletes a previously provisioned volume | |
rpc DeleteVolume (DeleteVolumeRequest) | |
returns (DeleteVolumeResponse) {} | |
// make a volume available on some required node |
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
service Identity { | |
// return the version and name of the plugin | |
rpc GetPluginInfo(GetPluginInfoRequest) | |
returns (GetPluginInfoResponse) {} | |
// reports whether the plugin has the ability of serving the Controller interface | |
rpc GetPluginCapabilities(GetPluginCapabilitiesRequest) | |
returns (GetPluginCapabilitiesResponse) {} | |
// called by the CO just to check whether the plugin is running or not | |
rpc Probe (ProbeRequest) | |
returns (ProbeResponse) {} |
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
CONTAINER | CSI-SPEC | RELEASE | KUBERNETES-SUPPORT | |
---|---|---|---|---|
driver-registrar | v0.3 | v0.3.0 | Beta (v1.11) | |
external-provisioner | v0.3 | v0.3.0 | Beta (v1.11) | |
external-attacher | v0.3 | v0.3.0 | Beta (v1.11) |