├── .chef └── bootstrap │ └── fnd-lab.erb ├── .gitignore ├── CONTRIBUTING ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── guides ├── instructor-setup.md ├── prerequisites.md ├── student-exercises.md └── student-exercises │ ├── adding-a-new-node.md │ ├── adding-cookbooks.md │ ├── anatomy-of-a-chef-run.md │ ├── chef-node.md │ ├── cookbooks-recipes-resources.md │ ├── data-bags.md │ ├── example-cookbook.md │ ├── getting-started.md │ ├── introduction-to-search.md │ ├── lwrp-introduction.md │ ├── more-cookbooks.md │ ├── multiple-nodes-and-search.md │ ├── node-attributes.md │ ├── resources-in-depth.md │ ├── roles.md │ └── troubleshooting.md ├── image-src ├── README.md ├── anatomy-of-chef-run.graffle ├── authn-flow.graffle ├── bare-metal-cloud.graffle ├── bare-metal.graffle ├── chef-basics-cookbook.graffle ├── chef-server-arch.graffle ├── chef-server-url-config.graffle ├── complex-infrastructure.graffle ├── doing-their-job.graffle ├── integrated-systems.graffle └── third-party-services.graffle └── slides ├── additional-topics └── 01_slide.md ├── anatomy-of-a-chef-run └── 01_slide.md ├── base.css ├── chef-development └── 01_slide.md ├── chef-node └── 01_slide.md ├── cookbooks-recipes-resources └── 01_slide.md ├── getting-started └── 01_slide.md ├── images ├── 5-free-nodes.png ├── anatomy-of-chef-run-0.png ├── anatomy-of-chef-run-1.png ├── anatomy-of-chef-run-2.png ├── anatomy-of-chef-run-3.png ├── anatomy-of-chef-run-4.png ├── anatomy-of-chef-run-5.png ├── anatomy-of-chef-run-6.png ├── anatomy-of-chef-run.png ├── anatomy-of-chef-run │ ├── anatomy-of-chef-run-001.png │ ├── anatomy-of-chef-run-002.png │ ├── anatomy-of-chef-run-003.png │ ├── anatomy-of-chef-run-004.png │ ├── anatomy-of-chef-run-005.png │ ├── anatomy-of-chef-run-006.png │ ├── anatomy-of-chef-run-007.png │ ├── anatomy-of-chef-run-008.png │ ├── anatomy-of-chef-run-009.png │ ├── anatomy-of-chef-run-010.png │ ├── anatomy-of-chef-run-011.png │ └── anatomy-of-chef-run-full.png ├── authn-flow.png ├── bare-metal-cloud.png ├── bare-metal.png ├── chef-basics-cookbook.png ├── chef-server-arch.png ├── chef-server-url-config.png ├── complex-infrastructure.png ├── doing-their-job.png ├── email-verified.png ├── free-trial.png ├── generate-knife-config.png ├── generate-validation-key.png ├── getting-cookbooks.png ├── hosted-chef-signup.png ├── integrated-systems.png ├── manage-console-user-login.png ├── next-steps.png ├── oc-chef-logo.png ├── policy-driven-process.png ├── select-organizations.png ├── signup-about.png ├── third-party-services.png ├── user-get-private-key.png └── working-with-chef.png ├── introduction └── 01_slide.md ├── just-enough-ruby-for-chef └── 01_slide.md ├── lwrp-introduction └── 01_slide.md ├── more-cookbooks └── 01_slide.md ├── multiple-nodes-and-search └── 01_slide.md ├── resources-in-depth └── 01_slide.md ├── roles └── 01_slide.md ├── showoff.json ├── shrink.js └── troubleshooting └── 01_slide.md /.chef/bootstrap/fnd-lab.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/.chef/bootstrap/fnd-lab.erb -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/Rakefile -------------------------------------------------------------------------------- /guides/instructor-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/instructor-setup.md -------------------------------------------------------------------------------- /guides/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/prerequisites.md -------------------------------------------------------------------------------- /guides/student-exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises.md -------------------------------------------------------------------------------- /guides/student-exercises/adding-a-new-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises/adding-a-new-node.md -------------------------------------------------------------------------------- /guides/student-exercises/adding-cookbooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises/adding-cookbooks.md -------------------------------------------------------------------------------- /guides/student-exercises/anatomy-of-a-chef-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises/anatomy-of-a-chef-run.md -------------------------------------------------------------------------------- /guides/student-exercises/chef-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises/chef-node.md -------------------------------------------------------------------------------- /guides/student-exercises/cookbooks-recipes-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises/cookbooks-recipes-resources.md -------------------------------------------------------------------------------- /guides/student-exercises/data-bags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises/data-bags.md -------------------------------------------------------------------------------- /guides/student-exercises/example-cookbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises/example-cookbook.md -------------------------------------------------------------------------------- /guides/student-exercises/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises/getting-started.md -------------------------------------------------------------------------------- /guides/student-exercises/introduction-to-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises/introduction-to-search.md -------------------------------------------------------------------------------- /guides/student-exercises/lwrp-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises/lwrp-introduction.md -------------------------------------------------------------------------------- /guides/student-exercises/more-cookbooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises/more-cookbooks.md -------------------------------------------------------------------------------- /guides/student-exercises/multiple-nodes-and-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises/multiple-nodes-and-search.md -------------------------------------------------------------------------------- /guides/student-exercises/node-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises/node-attributes.md -------------------------------------------------------------------------------- /guides/student-exercises/resources-in-depth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises/resources-in-depth.md -------------------------------------------------------------------------------- /guides/student-exercises/roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises/roles.md -------------------------------------------------------------------------------- /guides/student-exercises/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/guides/student-exercises/troubleshooting.md -------------------------------------------------------------------------------- /image-src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/image-src/README.md -------------------------------------------------------------------------------- /image-src/anatomy-of-chef-run.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/image-src/anatomy-of-chef-run.graffle -------------------------------------------------------------------------------- /image-src/authn-flow.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/image-src/authn-flow.graffle -------------------------------------------------------------------------------- /image-src/bare-metal-cloud.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/image-src/bare-metal-cloud.graffle -------------------------------------------------------------------------------- /image-src/bare-metal.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/image-src/bare-metal.graffle -------------------------------------------------------------------------------- /image-src/chef-basics-cookbook.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/image-src/chef-basics-cookbook.graffle -------------------------------------------------------------------------------- /image-src/chef-server-arch.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/image-src/chef-server-arch.graffle -------------------------------------------------------------------------------- /image-src/chef-server-url-config.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/image-src/chef-server-url-config.graffle -------------------------------------------------------------------------------- /image-src/complex-infrastructure.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/image-src/complex-infrastructure.graffle -------------------------------------------------------------------------------- /image-src/doing-their-job.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/image-src/doing-their-job.graffle -------------------------------------------------------------------------------- /image-src/integrated-systems.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/image-src/integrated-systems.graffle -------------------------------------------------------------------------------- /image-src/third-party-services.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/image-src/third-party-services.graffle -------------------------------------------------------------------------------- /slides/additional-topics/01_slide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/additional-topics/01_slide.md -------------------------------------------------------------------------------- /slides/anatomy-of-a-chef-run/01_slide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/anatomy-of-a-chef-run/01_slide.md -------------------------------------------------------------------------------- /slides/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/base.css -------------------------------------------------------------------------------- /slides/chef-development/01_slide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/chef-development/01_slide.md -------------------------------------------------------------------------------- /slides/chef-node/01_slide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/chef-node/01_slide.md -------------------------------------------------------------------------------- /slides/cookbooks-recipes-resources/01_slide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/cookbooks-recipes-resources/01_slide.md -------------------------------------------------------------------------------- /slides/getting-started/01_slide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/getting-started/01_slide.md -------------------------------------------------------------------------------- /slides/images/5-free-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/5-free-nodes.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run-0.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run-1.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run-2.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run-3.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run-4.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run-5.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run-6.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run/anatomy-of-chef-run-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run/anatomy-of-chef-run-001.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run/anatomy-of-chef-run-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run/anatomy-of-chef-run-002.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run/anatomy-of-chef-run-003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run/anatomy-of-chef-run-003.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run/anatomy-of-chef-run-004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run/anatomy-of-chef-run-004.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run/anatomy-of-chef-run-005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run/anatomy-of-chef-run-005.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run/anatomy-of-chef-run-006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run/anatomy-of-chef-run-006.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run/anatomy-of-chef-run-007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run/anatomy-of-chef-run-007.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run/anatomy-of-chef-run-008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run/anatomy-of-chef-run-008.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run/anatomy-of-chef-run-009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run/anatomy-of-chef-run-009.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run/anatomy-of-chef-run-010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run/anatomy-of-chef-run-010.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run/anatomy-of-chef-run-011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run/anatomy-of-chef-run-011.png -------------------------------------------------------------------------------- /slides/images/anatomy-of-chef-run/anatomy-of-chef-run-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/anatomy-of-chef-run/anatomy-of-chef-run-full.png -------------------------------------------------------------------------------- /slides/images/authn-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/authn-flow.png -------------------------------------------------------------------------------- /slides/images/bare-metal-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/bare-metal-cloud.png -------------------------------------------------------------------------------- /slides/images/bare-metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/bare-metal.png -------------------------------------------------------------------------------- /slides/images/chef-basics-cookbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/chef-basics-cookbook.png -------------------------------------------------------------------------------- /slides/images/chef-server-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/chef-server-arch.png -------------------------------------------------------------------------------- /slides/images/chef-server-url-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/chef-server-url-config.png -------------------------------------------------------------------------------- /slides/images/complex-infrastructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/complex-infrastructure.png -------------------------------------------------------------------------------- /slides/images/doing-their-job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/doing-their-job.png -------------------------------------------------------------------------------- /slides/images/email-verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/email-verified.png -------------------------------------------------------------------------------- /slides/images/free-trial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/free-trial.png -------------------------------------------------------------------------------- /slides/images/generate-knife-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/generate-knife-config.png -------------------------------------------------------------------------------- /slides/images/generate-validation-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/generate-validation-key.png -------------------------------------------------------------------------------- /slides/images/getting-cookbooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/getting-cookbooks.png -------------------------------------------------------------------------------- /slides/images/hosted-chef-signup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/hosted-chef-signup.png -------------------------------------------------------------------------------- /slides/images/integrated-systems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/integrated-systems.png -------------------------------------------------------------------------------- /slides/images/manage-console-user-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/manage-console-user-login.png -------------------------------------------------------------------------------- /slides/images/next-steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/next-steps.png -------------------------------------------------------------------------------- /slides/images/oc-chef-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/oc-chef-logo.png -------------------------------------------------------------------------------- /slides/images/policy-driven-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/policy-driven-process.png -------------------------------------------------------------------------------- /slides/images/select-organizations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/select-organizations.png -------------------------------------------------------------------------------- /slides/images/signup-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/signup-about.png -------------------------------------------------------------------------------- /slides/images/third-party-services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/third-party-services.png -------------------------------------------------------------------------------- /slides/images/user-get-private-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/user-get-private-key.png -------------------------------------------------------------------------------- /slides/images/working-with-chef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/images/working-with-chef.png -------------------------------------------------------------------------------- /slides/introduction/01_slide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/introduction/01_slide.md -------------------------------------------------------------------------------- /slides/just-enough-ruby-for-chef/01_slide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/just-enough-ruby-for-chef/01_slide.md -------------------------------------------------------------------------------- /slides/lwrp-introduction/01_slide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/lwrp-introduction/01_slide.md -------------------------------------------------------------------------------- /slides/more-cookbooks/01_slide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/more-cookbooks/01_slide.md -------------------------------------------------------------------------------- /slides/multiple-nodes-and-search/01_slide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/multiple-nodes-and-search/01_slide.md -------------------------------------------------------------------------------- /slides/resources-in-depth/01_slide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/resources-in-depth/01_slide.md -------------------------------------------------------------------------------- /slides/roles/01_slide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/roles/01_slide.md -------------------------------------------------------------------------------- /slides/showoff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/showoff.json -------------------------------------------------------------------------------- /slides/shrink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/shrink.js -------------------------------------------------------------------------------- /slides/troubleshooting/01_slide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhotta/chef-fundamentals-ja/HEAD/slides/troubleshooting/01_slide.md --------------------------------------------------------------------------------