Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

fix: Add "arm" architecture#18

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
kylecarbs merged 1 commit intomainfromarm
May 9, 2022
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
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
1 change: 1 addition & 0 deletionsdocs/data-sources/workspace.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,6 +26,7 @@ resource "kubernetes_pod" "dev" {

### Read-Only

- `access_url` (String) The access URL of the Coder deployment provisioning this workspace.
- `id` (String) UUID of the workspace.
- `name` (String) Name of the workspace.
- `owner` (String) Username of the workspace owner.
Expand Down
2 changes: 1 addition & 1 deletiondocs/resources/agent.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -41,7 +41,7 @@ resource "kubernetes_pod" "dev" {

### Required

- `arch` (String) The architecture the agent will run on. Must be one of: "amd64", "arm64".
- `arch` (String) The architecture the agent will run on. Must be one of: "amd64", "armv7", "arm64".
- `os` (String) The operating system the agent will run on. Must be one of: "linux", "darwin", or "windows".

### Optional
Expand Down
4 changes: 2 additions & 2 deletionsdocs/resources/app.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -56,10 +56,10 @@ resource "coder_app" "intellij" {

### Optional

- `command` (String) A command to run in a terminal opening this app. In the web, this will open in a new tab. In the CLI, this will SSH and execute the command.
- `command` (String) A command to run in a terminal opening this app. In the web, this will open in a new tab. In the CLI, this will SSH and execute the command. Either "command" or "target" may be specified, but not both.
- `icon` (String) A URL to an icon that will display in the dashboard. View built-in icons here: https://github.com/coder/coder/tree/main/site/static/icons. Use a built-in icon with `data.coder_workspace.me.access_url + "/icons/<path>"`.
- `id` (String) The ID of this resource.
- `name` (String) A display name to identify the app.
- `target` (String) A URL to be proxied to from inside the workspace.
- `target` (String) A URL to be proxied to from inside the workspace. Either "command" or "target" may be specified, but not both.


4 changes: 2 additions & 2 deletionsinternal/provider/provider.go
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -163,8 +163,8 @@ func New() *schema.Provider {
Type: schema.TypeString,
ForceNew: true,
Required: true,
Description: `The architecture the agent will run on. Must be one of: "amd64", "arm64".`,
ValidateFunc: validation.StringInSlice([]string{"amd64", "arm64"}, false),
Description: `The architecture the agent will run on. Must be one of: "amd64", "armv7", "arm64".`,
ValidateFunc: validation.StringInSlice([]string{"amd64", "armv7", "arm64"}, false),
},
"auth": {
Type: schema.TypeString,
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp