-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update docs * .
- Loading branch information
Showing
15 changed files
with
87 additions
and
55 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
github: | ||
- ofek | ||
custom: | ||
- https://ofek.dev/donate/ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Documentation | ||
name: documentation | ||
|
||
on: | ||
create: | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Image | ||
name: image | ||
|
||
on: [push, pull_request] | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Test | ||
name: test | ||
|
||
on: [push, pull_request] | ||
|
||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
.md-typeset .tabbed-set { | ||
border: 1px solid #eee; | ||
} | ||
.md-typeset .tabbed-content { | ||
padding: 0.5em 1em; | ||
} | ||
|
||
/* https://github.com/squidfunk/mkdocs-material/issues/1522 */ | ||
.md-typeset h5 { | ||
color: var(--md-default-fg-color); | ||
text-transform: none; | ||
} | ||
|
||
/* Brighter links for dark mode */ | ||
[data-md-color-scheme=slate] { | ||
/* https://github.com/squidfunk/mkdocs-material/blob/8.2.15/src/assets/stylesheets/main/_colors.scss */ | ||
--md-typeset-a-color: var(--md-primary-fg-color--light); | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#!/usr/bin/env ash | ||
|
||
# docker run --rm -v $PWD:/go/src/github.com/ofek/csi-gcs -w /go/src/github.com/ofek/csi-gcs golang:1.18.2-alpine3.15 ./hack/update-codegen.sh | ||
apk add --update --no-cache bash | ||
go get -u k8s.io/[email protected] | ||
|
||
|
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
from invoke import task | ||
|
||
from .utils import get_root | ||
|
||
|
||
@task( | ||
default=True, | ||
) | ||
def codegen(ctx): | ||
mount_dir = '/go/src/github.com/ofek/csi-gcs' | ||
ctx.run( | ||
f'docker run ' | ||
f'--rm ' | ||
f'-v "{get_root()}:{mount_dir}" ' | ||
f'-w {mount_dir} ' | ||
f'golang:1.18.2-alpine3.15 ' | ||
f'./hack/update-codegen.sh', | ||
echo=True, | ||
) |
This file contains 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