Commit graph

266 commits

Author SHA1 Message Date
github-actions
d854f5c59d Automated documentation update [skip ci] 2022-11-14 20:22:43 +00:00
Paul Yu
eafa28287e
Add new option to install azure-cli extensions (#165)
* Add new option for azure-cli extensions

* Update to install az extensions as $_REMOTE_USER

* Skip unknown extensions

* Change azure cli extension option type to string

* Adding test for azure-cli extensions
2022-11-14 12:22:02 -08:00
JP Ungaretti
e00724a0c6
Add git extension for JupyterLab to Python feature (#286)
* Add git extension

* Bump version
2022-11-14 11:46:13 -08:00
Chuck Lantz
17580ee22f
Add .NET 7, drop .NET 5 (#269)
* Add .NET 7, drop .NET 5

* Add libssl3 to common-utils for jammy

* Handle lts/latest hard coding

* Fix, improve tests

* Bump version

* Fix situation where version could come from either MS repo or OS

* Remove unused option

* Bump common version

* Remove unused function

* Restore DOTNET_ROOT per feedback
2022-11-14 11:41:32 -08:00
github-actions[bot]
258b107b39
Automated documentation update (#287)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-11-14 11:40:25 -08:00
github-actions[bot]
0e25800486
Automated documentation update (#282)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-11-12 11:24:57 -08:00
Chuck Lantz
e9c4f9f8c5
Fix property name 2022-11-12 11:22:41 -08:00
github-actions[bot]
7172641514
Automated documentation update (#281)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-11-12 11:14:58 -08:00
github-actions[bot]
00a51775eb
Automated documentation update (#279)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-11-12 11:14:29 -08:00
Chuck Lantz
1c61d1a039
Add test, bump version for extraNixConfig (#280) 2022-11-12 11:12:21 -08:00
Nick Hu
a2b1c19a51
Nix feature: allow extra configuration of /etc/nix/nix.conf (#277) 2022-11-12 10:33:16 -08:00
Chuck Lantz
f7f05f76fa
Fix regression with Azure CLI, privs (#272) 2022-11-10 17:03:21 -08:00
Chuck Lantz
3020d6da64
Fix python feature issue #258, improve tests, fix oryx bug (#261)
* Fix #258, improve tests, fix oryx bug
* Drop Debian 9 from tests given it is out of support
2022-11-07 12:46:23 -06:00
github-actions[bot]
73a9c7d382
Automated documentation update (#257)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-11-02 17:02:26 -07:00
Chuck Lantz
d003c1b1ac
Add missing notes 2022-11-02 18:39:11 -05:00
github-actions[bot]
b7c70d3d9b
Automated documentation update (#254)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-11-01 14:18:13 -07:00
Samruddhi Khandale
752ba5db21
Test actions - Add more base images (#245)
update base images
2022-11-01 14:06:27 -07:00
Samruddhi Khandale
a94558576c
Oryx - git clone: Pin to an older commit (#253)
pin: git clone
2022-11-01 11:28:41 -07:00
github-actions[bot]
268368beeb
Automated documentation update (#252)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-11-01 10:04:58 -07:00
Chuck Lantz
0752a52b0c
Nix feature (#228) 2022-11-01 12:02:02 -05:00
Samruddhi Khandale
748be9320c
kubectl-helm-minikube - Remove 'ms-kubernetes-tools.vscode-kubernetes-tools' extension (#251)
update kubectl-helm-minikube
2022-11-01 09:17:03 -07:00
github-actions[bot]
1313517fc4
Automated documentation update (#250)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-10-31 15:10:22 -07:00
Brigit Murtaugh
2ce89c4a57
Update README.md (#243)
* Update README.md

* Update to website
2022-10-31 07:55:26 -07:00
Samruddhi Khandale
9366ef7ed1
Node: Fix failure when version:none (#247)
fix version:none
2022-10-28 16:50:48 -07:00
github-actions[bot]
f1c981d064
Automated documentation update (#246)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-10-28 13:59:09 -07:00
Alessandro (Ale) Segala
0ee38a48e4
Install golangci-lint from prebuilt binaries and allow specifying its version (#238)
* Install golangci-lint from prebuilt binaries and allow specifying its version

* Updated as requested

* Update src/go/devcontainer-feature.json

Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>

* Updated install path

Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>
2022-10-28 13:57:57 -07:00
Aurelio Jargas
85d2150997
github-cli: Remove duplicated find_version_from_git_tags () (#235)
This function was defined twice in the install script for GitHub CLI, in
old lines 76 and 161. This commit removes the first definition.

The only function calls were on old lines 201 and 222. Since they appear
after the second function definition at line 161, the first one at line
76 never got called, so it's safe to remove it.

I confirmed that this was the only file in this repository where this
function was duplicated:  

    $ git grep '^ *find_version_from_git_tags *('
    src/docker-from-docker/install.sh:find_version_from_git_tags() {
    src/docker-in-docker/install.sh:find_version_from_git_tags() {
    src/git-lfs/install.sh:find_version_from_git_tags() {
    src/github-cli/install.sh:find_version_from_git_tags() {
    src/github-cli/install.sh:find_version_from_git_tags() {
    src/go/install.sh:find_version_from_git_tags() {
    src/kubectl-helm-minikube/install.sh:find_version_from_git_tags() {
    src/php/install.sh:find_version_from_git_tags() {
    src/powershell/install.sh:find_version_from_git_tags() {
    src/python/install.sh:find_version_from_git_tags() {
    src/ruby/install.sh:find_version_from_git_tags() {
    src/rust/install.sh:find_version_from_git_tags() {
    src/terraform/install.sh:find_version_from_git_tags() {
    $
2022-10-28 10:46:16 -07:00
github-actions[bot]
22050f2fd4
Automated documentation update (#242)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-10-28 10:44:39 -07:00
Chuck Lantz
2963ae9119
Fix privs in Node, regressions from #199 (#241)
Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>
2022-10-28 12:32:58 -05:00
Samruddhi Khandale
ab021f0dfb
Fix oryx bug - Add PIP_CACHE_DIR (#239)
* oryx update

* bump version

* update comment
2022-10-26 15:20:47 -07:00
Edmundo Gonzalez
520a4abc40
Python version 3.11 (#237)
* Adding 3.11 option

* Updating tests.
2022-10-25 16:07:05 -07:00
github-actions[bot]
fd31e97db0
Automated documentation update (#233)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-10-21 07:40:36 -07:00
Kevin Klopfenstein
7ae8c5c16d
Add default-address-pool setting (#223) 2022-10-21 07:31:04 -07:00
github-actions[bot]
4dae930c16
Automated documentation update (#231)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-10-19 09:20:09 -07:00
Daniel Braun
40206f4774
Update devcontainer-feature.json (#230)
* Update devcontainer-feature.json

Minor typo fix

* Update devcontainer-feature.json

Co-authored-by: Josh Spicer <josh@joshspicer.com>
2022-10-19 08:56:52 -07:00
github-actions[bot]
aad4e3a7af
Automated documentation update (#213)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-10-18 16:40:10 -07:00
Josh Spicer
67b15cae12
add installsAfter: common-utils to all Features (#214) 2022-10-18 16:30:56 -07:00
github-actions[bot]
7860eb85a4
Automated documentation update (#229)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-10-18 16:30:21 -07:00
Josh Spicer
2bec6f056c
clean up AWS feature description (#225)
* clean up AWS feature description

* Update devcontainer-feature.json
2022-10-18 16:26:28 -07:00
Josh Spicer
43f0b34aa3
bump docker-in-docker to 1.0.7 2022-10-17 08:27:44 -07:00
Charlie Andrews
2c82571f42
Quote var in comparison in docker-in-docker install script (#224) 2022-10-17 08:26:58 -07:00
github-actions[bot]
530997ce54
Automated documentation update (#218)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-10-13 08:47:25 -07:00
Chuck Lantz
a244dc394f
Fix formatting for desktop-lite note (#216) 2022-10-12 17:31:29 -07:00
eitsupi
a8cb375d46
Ensure remove apt-update cache at the beginning and end of the scripts (#210)
* remove apt lists

* bump versions
2022-10-10 15:33:01 -07:00
github-actions[bot]
065b5ec9e1
Automated documentation update (#205)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-10-06 15:57:17 -07:00
github-actions[bot]
14c7ee7897
Automated documentation update (#202)
Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
2022-10-06 15:45:36 -05:00
Samruddhi Khandale
2d63a582d9
Common-utils: Fix bug - optional first run image specific notice (#201)
* add DEV_CONTAINERS_DIR as containerEnv

* fix path

* update test

* remove containerEnv
2022-10-06 15:44:43 -05:00
Josh Spicer
602c3ec7b6
Move conda description to description property (#196)
move conda description to description property
2022-10-06 14:10:40 -05:00
Samruddhi Khandale
2d89dc301e
Node: Fix nvm ownership (#199)
* Node: Fix nvm ownership

* remove 0002
2022-10-06 13:41:34 -05:00
Kevin Klopfenstein
a9441adf0e
Add docker-in-docker azure_dns_override flag (#200)
* Add docker-in-docker azure_dns_overrideflag

* Update install.sh

* clarify variable name

* update option name and description for `azureDnsAutoDetection`

* bump feature version

Co-authored-by: Josh Spicer <josh@joshspicer.com>
2022-10-06 10:54:20 -07:00