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
project = "13kd9sg15ereb28247anowbbek" | |
# | |
# thoughts: | |
# build config - public image, dockerfile or buildpack | |
# deploy config - select a "preset", use a private helm chart, use a public helm chart | |
# listener config - derived from the preset config (ie: has a probe path, listener port, domain stuff in the future) | |
# | |
# | |
# https://developer.hashicorp.com/waypoint/plugins/kubernetes |
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
package main | |
import "fmt" | |
func SliceToGroupsUpdated[T any](slice []T, limit int) [][]T { | |
if limit < 1 { | |
limit = 1 | |
} | |
matrix := [][]T{{}} |
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
--- | |
key_stroke_delay: 50ms | |
command_delay: 200ms | |
terminal: ~/nuon $ | |
env_vars: | |
WHATEVER: VALUE-TEST | |
steps: | |
- name: "install nuon" | |
display_cmd: /bin/bash -c "$(curl -fsSL https://nuon-artifacts.s3.us-west-2.amazonaws.com/cli/install.sh)" |
OlderNewer