Skip to content

Commit 7412617

Browse files
authored
multiple fixes (#62)
* docs: added ops util clean. Updated ops config etcd * chore: changed telegram to discord replaced telegram link with discord * fix: theme toggler position moved up the theme toggler button, because it will cover the links in the footer * chore: ops install on windows updated command to install ops on windows * chore: fix to build.yml action trying to fix the build action
1 parent 77cae7d commit 7412617

6 files changed

Lines changed: 19 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ jobs:
1717
steps:
1818
- name: Checkout repository
1919
uses: actions/checkout@v4
20+
- name: Setup Node.js
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: 18
24+
- name: Clear NPM cache
25+
run: npm cache clean --force
2026
- name: Checkout Production
2127
if: github.ref_name == 'main'
2228
uses: actions/checkout@v4

content/en/docs/installation/download/_index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ curl -sL bit.ly/get-ops | bash
3434

3535
Quick install in Windows with PowerShell
3636

37+
Open a powershell. Then give these commands:
38+
3739
```powershell
40+
Set-ExecutionPolicy Bypass - Scope Process -Force
3841
irm bit.ly/get-ops-exe | iex
3942
```
4043

content/en/docs/reference/tasks/config/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Usage:
2020
config postgres [--failover] [--backup] [--schedule=<cron_expression>] [--replicas=<replicas>]
2121
config minio [--s3] [--console]
2222
config milvus [--maxdbnum=<maxdbnum>]
23-
config etcd [--replicas=<replicas>]
23+
config etcd [--replicas=<replicas>] [--quota_backend_bytes=<bytes>] [--auto_compaction_retention=<retention_period>]
2424
config aws [--access=<access>] [--secret=<secret>] [--region=<region>] [--image=<image>] [--vm=<vm>] [--vmuser=<vmuser>] [--disk=<disk>] [--key=<key>]
2525
config eks [--project=<project>] [--access=<access>] [--secret=<secret>] [--region=<region>] [--name=<name>] [--count=<count>] [--vm=<vm>] [--disk=<disk>] [--key=<key>] [--kubever=<kubever>]
2626
config gcloud [--project=<project>] [--region=<region>] [--vm=<vm>] [--disk=<disk>] [--key=<key>] [--image=<image>]

content/en/docs/reference/tasks/util/_index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ Usage:
1717
util kubectl <args>...
1818
util kubeconfig
1919
util config <configjson> [--override] [--showhelp]
20-
util upload <folder> [--batchsize=<batchsize>] [--verbose] [--clean]
20+
util clean
21+
util upload [<folder>] [--batchsize=<batchsize>] [--verbose] [--clean]
2122
util add-secret <args>...
2223
util remove-secret <args>...
2324
util list-secrets
@@ -36,6 +37,7 @@ Usage:
3637
- kubectl execute kubectl on current kubeconfig
3738
- kubeconfig export OVERWRITING current kubeconfig to ~/.kube/config
3839
- config update configuration file interactively
40+
- clean clean up the web bucket
3941
- upload uploads a folder to the web bucket in OpenServerless.
4042
- add-secret add one or multiple secrets to user metadata
4143
- remove-secret remove one or multiple secrets to user metadata

hugo.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -217,14 +217,15 @@ params:
217217
url: https://github.com/apache/openserverless
218218
icon: fab fa-github
219219
desc: Development takes place here!
220+
- name: Discord
221+
url: https://discord.com/invite/PkD7CcHgGP
222+
icon: fab fa-discord
223+
desc: A public discor server to discuss everything about OpenServerless
220224
- name: Slack
221225
url: https://the-asf.slack.com/archives/C07B6K5R3F0
222226
icon: fab fa-slack
223227
desc: Chat with other project developers
224-
- name: Telegram
225-
url: https://t.me/+XhbCjBrkkaNkOWM0
226-
icon: fab fa-telegram
227-
desc: A public telegram group to discuss everything about OpenServerless
228+
228229

229230
module:
230231
# Uncomment the next line to build and serve using local docsy clone declared in the named Hugo workspace:

layouts/partials/theme-toggler.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/* Stili per il pulsante flottante */
2727
#theme-toggler-container {
2828
position: fixed;
29-
bottom: 20px;
29+
bottom: 70px;
3030
right: 20px;
3131
z-index: 1000;
3232
}

0 commit comments

Comments
 (0)