Skip to content

Commit

Permalink
Merge pull request #35 from blacksmith-community/hostname-fix
Browse files Browse the repository at this point in the history
fix hostname for redis
  • Loading branch information
haochenhu233 authored Feb 1, 2025
2 parents 2583ba7 + 2a22757 commit cb122f2
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ cat > $PLANROOT/plan.yml <<EOF
id: <%= id %>
name: <%= plan["name"] || id %>
limit: <%= plan["limit"] || 0 %>
type: <%= if plan["type"].include?("standalone")
"standalone"
elsif plan["type"].include?("cluster")
"node"
else
plan["type"]
end %>
description: |+
<%= plan["description"] || 'no description provided' %>
EOF
Expand Down

0 comments on commit cb122f2

Please sign in to comment.