Cookbooks Alternatives
Similar projects and alternatives to cookbooks based on common topics and language
-
-
Kargo
Stop Scripting Promotions. Start Shipping with Kargo. Kargo automates promotion across dev, staging, and prod with approval gates and verification. Open source, built by the team behind Argo CD. Download now.
-
client-platform-engineering
A collection of cookbooks, scripts and binaries used to manage our macOS, Ubuntu and Windows endpoints
-
-
-
Chef
Chef Infra, a powerful automation platform that transforms infrastructure into code automating how infrastructure is configured, deployed and managed across any environment, at any scale
-
NOTE:
The number of mentions on this list indicates mentions on common posts plus user suggested alternatives.
Hence, a higher number means a better cookbooks alternative or higher similarity.
cookbooks discussion
cookbooks reviews and mentions
Posts with mentions or reviews of cookbooks.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2021-07-15.
-
Create and Configure Google Cloud Instance using Terraform and Chef
#!/bin/bash mkdir -p /data/chef_cookbooks rm -rf /data/chef_cookbooks/* outfile='/var/log/userdata.out' # Install Chef client v14 if [ ! -f /usr/bin/chef-client ] ; then echo "Installing chef client" >> $outfile curl -L https://omnitruck.chef.io/install.sh | sudo bash -s -- -v 15.8.23 >> $outfile fi # Install git if [ ! -f /usr/bin/git ] ; then yum install git -y >> $outfile fi # Clone Chef cookbook repo cd /data/chef_cookbooks echo "Cookbook Repo cloning" >> $outfile git clone https://github.com/chefgs/cookbooks.git >> $outfile echo "Executing chef-client" >> $outfile cd /data/chef_cookbooks sudo chef-client -z -o apache --chef-license accept >> /var/log/chefrun.out ## if [ -d /var/www/html/ ] ; then echo "Apache server created successfully, hence create sample html site" >> $outfile cat <<'EOF' >> /var/www/html/index.html Apache server in Google Cloud Created using metadata startup script from a local script file. EOF fi
Stats
Basic cookbooks repo stats
1
0
1.8
about 5 years ago
chefgs/cookbooks is an open source project licensed under Apache License 2.0 which is an OSI approved license.
The primary programming language of cookbooks is Ruby.