This file contains hidden or 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
#!/opt/chef/embedded/bin/ruby | |
# | |
# Create/manage Cinder volume snapshots | |
# | |
require 'mixlib/shellout' | |
require 'fog/openstack' | |
# |
This file contains hidden or 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
--- | |
kind: Endpoints | |
apiVersion: v1 | |
metadata: | |
name: glusterfs-cluster | |
subsets: | |
- addresses: | |
- ip: 10.138.0.8 | |
ports: | |
- port: 49152 |
This file contains hidden or 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: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
name: kibana-doorman | |
annotations: | |
kubernetes.io/ingress.class: "nginx" | |
nginx.ingress.kubernetes.io/use-regex: "true" | |
nginx.ingress.kubernetes.io/server-snippet: | | |
location = / { return 308 https://$best_http_host/_plugin/kibana; } | |
spec: |
This file contains hidden or 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
#!/usr/bin/env ruby | |
# | |
class Rundganger | |
attr_accessor :coordinates, :path | |
def initialize | |
@coordinates = [0,0,0] | |
@path = [] << @coordinates.clone | |
end |
OlderNewer