View external_resource.yaml
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
heat_template_version: ocata | |
parameters: | |
Foo1: | |
type: number | |
default: 123 | |
Foo2: | |
type: number | |
default: 456 |
View ceph_wipe_disk.yaml
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
# Instructions: | |
# 1. save this file somewhere, for example /home/stack/ceph_wipe_disk.yaml | |
# 2. create an empty ceph_wipe_env.yaml with the following contents: | |
# | |
# resource_registry: | |
# OS::TripleO::NodeUserData: /home/stack/ceph_wipe_disk.yaml | |
# parameter_defaults: | |
# ceph_disks: "/dev/sdb /dev/sdc" | |
# | |
# 3. when deploying, add to the CLI command the following argument: |
View init.el
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
;; add modules directory to load-path | |
(add-to-list 'load-path "~/.emacs.d/modules/") | |
;; highlight matching closing brackets | |
(show-paren-mode 1) | |
;; insert closing brackets automagically | |
;(electric-pair-mode 1) | |
;; set scroll step as 1 line |