@@ -119,22 +119,22 @@ const WorkstationStatus = ({ hasRunningJob }: WorkstationStatusProps) => {
119
119
< List . Item title = { "Logg inn i Google Cloud (kjøres lokalt)" } >
120
120
< div className = "flex" >
121
121
< code
122
- className = "rounded-sm bg-surface-neutral-subtle font-mono text-sm font-semibold" > gcloud
122
+ className = "rounded-xs bg-surface-neutral-subtle font-mono text-sm font-semibold" > gcloud
123
123
auth login</ code > < CopyButton size = "xsmall" copyText = "gcloud auth login" />
124
124
</ div >
125
125
</ List . Item >
126
126
< List . Item title = { "Opprette SSH-tunnel (kjøres lokalt)" } >
127
127
< div className = "flex" >
128
128
< code
129
- className = "rounded-sm bg-surface-neutral-subtle px-1 py-05 font-mono text-sm font-semibold" >
129
+ className = "rounded-xs bg-surface-neutral-subtle px-1 py-05 font-mono text-sm font-semibold" >
130
130
gcloud workstations start-tcp-tunnel --cluster=knada --config={ workstation . data . slug } --region=europe-north1 --project knada-gcp --local-host-port=:33649 { workstation . data . slug } 22</ code >
131
131
< CopyButton size = "xsmall" copyText = { `gcloud workstations start-tcp-tunnel --cluster=knada --config=${ workstation . data . slug } --region=europe-north1 --project knada-gcp --local-host-port=:33649 ${ workstation . data . slug } 22` } />
132
132
</ div >
133
133
</ List . Item >
134
134
< List . Item title = { "Opprette SSH-nøkkel (kjøres lokalt, hopp over om du allerede har gjort dette)" } >
135
135
< em > Sett et passord på SSH-nøkkelen. Du vil aldri bli bedt om å bytte dette.</ em >
136
136
< div className = "flex" >
137
- < code className = "rounded-sm bg-surface-neutral-subtle font-mono text-sm font-semibold" > { `ssh-keygen -t ed25519 -C "[email protected] "` } </ code > < CopyButton size = "xsmall" copyText = { `ssh-keygen -t ed25519 -C "[email protected] "` } > </ CopyButton >
137
+ < code className = "rounded-xs bg-surface-neutral-subtle font-mono text-sm font-semibold" > { `ssh-keygen -t ed25519 -C "[email protected] "` } </ code > < CopyButton size = "xsmall" copyText = { `ssh-keygen -t ed25519 -C "[email protected] "` } > </ CopyButton >
138
138
</ div >
139
139
</ List . Item >
140
140
< List . Item title = { "Få Knast til å stole på din SSH-nøkkel (kjøres på Knast, hopp over om du allerede har gjort dette)" } >
@@ -148,7 +148,7 @@ const WorkstationStatus = ({ hasRunningJob }: WorkstationStatusProps) => {
148
148
< List . Item title = { "Legg til knast i ssh-configen (kjøres lokalt, hopp over om du allerede har gjort dette)" } >
149
149
< div className = "flex" >
150
150
< code
151
- className = "rounded-sm bg-surface-neutral-subtle font-mono text-sm font-semibold" > { `echo -e "\\nHost knast\\n\\tHostName localhost\\n\\tPort 33649\\n\\tUser user\\n\\tUserKnownHostsFile /dev/null\\n\\tStrictHostKeyChecking no">>~/.ssh/config` } </ code > < CopyButton
151
+ className = "rounded-xs bg-surface-neutral-subtle font-mono text-sm font-semibold" > { `echo -e "\\nHost knast\\n\\tHostName localhost\\n\\tPort 33649\\n\\tUser user\\n\\tUserKnownHostsFile /dev/null\\n\\tStrictHostKeyChecking no">>~/.ssh/config` } </ code > < CopyButton
152
152
size = "xsmall"
153
153
copyText = { `echo -e "\\nHost knast\\n\\tHostName localhost\\n\\tPort 33649\\n\\tUser user\\n\\tUserKnownHostsFile /dev/null\\n\\tStrictHostKeyChecking no">>~/.ssh/config` } > </ CopyButton >
154
154
</ div >
0 commit comments