Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Aspire: Use bicep for container app deployment #4286

Merged
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
b7439bd
WIP: aspire: Use bicep for container app deployment
ellismg Sep 3, 2024
248d943
WIP: aspire: Support bicep based container app deployments
ellismg Sep 4, 2024
2e60108
WIP: aspire: Control bicep vs yaml via alpha flag
ellismg Sep 6, 2024
125ffbd
Merge remote-tracking branch 'upstream/main' into ellismg/aspire-use-…
ellismg Sep 6, 2024
3d2c091
Appease Linter
ellismg Sep 6, 2024
df5733c
Update Recordings
ellismg Sep 6, 2024
98b2ae9
Merge branch 'main' of github.com:Azure/azure-dev into ellismg/aspire…
vhvb1989 Sep 25, 2024
9b663ec
support project.v1 and container.v1
vhvb1989 Sep 25, 2024
9466e13
remove alpha feature and use the deployment property to generate or not
vhvb1989 Sep 25, 2024
4fb52bd
lint and test
vhvb1989 Sep 25, 2024
5d7fbc0
WIP
vhvb1989 Sep 26, 2024
7539f8f
Merge branch 'main' of github.com:Azure/azure-dev into ellismg/aspire…
vhvb1989 Sep 26, 2024
c95393a
first mvp
vhvb1989 Sep 26, 2024
ba7c4be
match vol name
vhvb1989 Sep 26, 2024
abe5972
long vols fix
vhvb1989 Sep 26, 2024
490e996
handle secrets with expr
vhvb1989 Sep 27, 2024
dfbf4ef
generate source when missing
vhvb1989 Sep 27, 2024
b9ab8da
sync functions
vhvb1989 Sep 27, 2024
fd0f35d
Merge branch 'main' of github.com:Azure/azure-dev into ellismg/aspire…
vhvb1989 Sep 30, 2024
0b38065
support secretOutputs w/o secret name for getting kv account name
vhvb1989 Sep 30, 2024
4be3d0c
update snap
vhvb1989 Sep 30, 2024
87119d5
Clean up some unused stuff
ellismg Oct 2, 2024
a54f9be
merge container.v0 and container.v1 into buildcontainer models
vhvb1989 Oct 3, 2024
d18f685
coverage
vhvb1989 Oct 3, 2024
fd9b2d2
Merge branch 'ellismg/aspire-use-bicep-for-container-deployment' of h…
vhvb1989 Oct 3, 2024
e3e9c09
Merge branch 'main' of github.com:Azure/azure-dev into ellismg/aspire…
vhvb1989 Oct 3, 2024
6c078e8
use default deployment settings
vhvb1989 Oct 3, 2024
26c99db
use manual variables
vhvb1989 Oct 3, 2024
f859910
undo
vhvb1989 Oct 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cli/azd/internal/scaffold/funcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ func BicepName(name string) string {
return sb.String()
}

func RemoveDotAndDash(name string) string {
return strings.ReplaceAll(strings.ReplaceAll(name, ".", ""), "-", "")
}

// UpperSnakeAlpha returns a name in upper-snake case alphanumeric name separated only by underscores.
//
// Non-alphanumeric characters are discarded, while consecutive separators ('-', '_', and '.') are treated
Expand Down
Loading
Loading