From f5c26686a1acc8c1c2c8809f752e605e10c2fdac Mon Sep 17 00:00:00 2001 From: Marco De Benedictis Date: Tue, 18 Jun 2024 11:08:00 +0200 Subject: [PATCH 1/6] docs: add events to community folder - renames files to follow same naming convention (hyphens) Signed-off-by: Marco De Benedictis --- community/events/README.md | 12 ++++++++++++ .../events/cloud-native-security.md | 2 +- past-events.md => community/events/past-events.md | 2 +- safe_kubecon.md => community/events/safe-kubecon.md | 0 4 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 community/events/README.md rename cloud_native_security.md => community/events/cloud-native-security.md (99%) rename past-events.md => community/events/past-events.md (99%) rename safe_kubecon.md => community/events/safe-kubecon.md (100%) diff --git a/community/events/README.md b/community/events/README.md new file mode 100644 index 000000000..957adec1d --- /dev/null +++ b/community/events/README.md @@ -0,0 +1,12 @@ +# Events + +## Upcoming Gatherings + +[CloudNativeSecurityCon](https://events.linuxfoundation.org/cloudnativesecuritycon-north-america/): +June 26 – 27, 2024 — Seattle, Washington + +## Recurring General Meetings + +[Weekly US Meeting](https://zoom.us/j/99809474566): each Wednesday at 10 am (UTC-7) + +[Bi-Weekly EMEA Meeting](https://zoom.us/j/99917523142): on Wednesdays at 1 pm (UTC+0, UTC+1 when daylight saving time is in effect) diff --git a/cloud_native_security.md b/community/events/cloud-native-security.md similarity index 99% rename from cloud_native_security.md rename to community/events/cloud-native-security.md index c7f01a7d8..1dae9e28e 100644 --- a/cloud_native_security.md +++ b/community/events/cloud-native-security.md @@ -23,7 +23,7 @@ project, architecture, and enhance team awareness on security. - Copenhagen, Denmark - May 2-4, 2018 -- [notes](safe_kubecon.md) +- [notes](safe-kubecon.md) [KubeCon + CloudNativeCon, Shanghai](https://events19.linuxfoundation.cn/events/kubecon-cloudnativecon-china-2018/) diff --git a/past-events.md b/community/events/past-events.md similarity index 99% rename from past-events.md rename to community/events/past-events.md index 1b97756bd..44e2aa593 100644 --- a/past-events.md +++ b/community/events/past-events.md @@ -5,7 +5,7 @@ -A list of past KubeCon/Cloud Native SecurityCon events an be found [here](cloud_native_security.md) +A list of past KubeCon/Cloud Native SecurityCon events can be found [here](cloud-native-security.md) ## DockerCon, San Francisco, CA, Apr 30 - May 2, 2019 diff --git a/safe_kubecon.md b/community/events/safe-kubecon.md similarity index 100% rename from safe_kubecon.md rename to community/events/safe-kubecon.md From a7522e9155899015c301ee0d3107f7b214c381ed Mon Sep 17 00:00:00 2001 From: Marco De Benedictis Date: Tue, 18 Jun 2024 11:09:07 +0200 Subject: [PATCH 2/6] feat: add community folder to website directory via makefile Signed-off-by: Marco De Benedictis --- website/Makefile | 1 + website/content/events/_index.md | 10 ---------- 2 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 website/content/events/_index.md diff --git a/website/Makefile b/website/Makefile index 0fca670c5..239abb6e6 100644 --- a/website/Makefile +++ b/website/Makefile @@ -6,6 +6,7 @@ deps: --include='assessments' --include='assessments/**' \ --include='governance' --include='governance/**' \ --include='publications' --include='publications/**' \ + --include='community' --include='community/**' \ --include='*.md' --exclude='*' # Move over content such as graphics and logos diff --git a/website/content/events/_index.md b/website/content/events/_index.md deleted file mode 100644 index 75359dc12..000000000 --- a/website/content/events/_index.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Events -menu: - main: - weight: 20 -description: Upcoming Events ---- - -[CloudNativeSecurityCon](https://events.linuxfoundation.org/cloudnativesecuritycon-north-america/): -June 26 – 27, 2024 — Seattle, Washington From 4eb9a704b239ab1f761aeacaf1fe4138a7a50aa4 Mon Sep 17 00:00:00 2001 From: Marco De Benedictis Date: Wed, 19 Jun 2024 11:01:30 +0200 Subject: [PATCH 3/6] docs: add community README Signed-off-by: Marco De Benedictis --- community/README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 community/README.md diff --git a/community/README.md b/community/README.md new file mode 100644 index 000000000..30f6c609a --- /dev/null +++ b/community/README.md @@ -0,0 +1,3 @@ +# TAG-Security Community Activities + +The Security TAG has several working groups that organize community activities around specific topics, including recurring meetings. From b7abb2e1b11e8a8251c8f05e90ea1e7b85e26d75 Mon Sep 17 00:00:00 2001 From: Marco De Benedictis Date: Wed, 19 Jun 2024 11:02:01 +0200 Subject: [PATCH 4/6] chore: remove community default layout Signed-off-by: Marco De Benedictis --- .../themes/docsy/layouts/community/list.html | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 website/themes/docsy/layouts/community/list.html diff --git a/website/themes/docsy/layouts/community/list.html b/website/themes/docsy/layouts/community/list.html deleted file mode 100644 index d66a50ed6..000000000 --- a/website/themes/docsy/layouts/community/list.html +++ /dev/null @@ -1,19 +0,0 @@ -{{ define "main" }} - - -
-
- -

Join the {{ .Site.Title }} community

- -

{{ .Site.Title }} is an open source project that anyone in the community can use, improve, and enjoy. We'd love you to join us! Here's a few ways to find out what's happening and get involved. - -

-
-{{ partial "community_links.html" . }} - -
-{{ .Content }} -
- -{{ end }} From e72b133583a695261600174d12c7d27838973a37 Mon Sep 17 00:00:00 2001 From: Marco De Benedictis Date: Wed, 19 Jun 2024 11:22:58 +0200 Subject: [PATCH 5/6] fix(safe-kubecon.md): linting, spelling Signed-off-by: Marco De Benedictis --- community/events/safe-kubecon.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/community/events/safe-kubecon.md b/community/events/safe-kubecon.md index 8d09ae997..37a433a7f 100644 --- a/community/events/safe-kubecon.md +++ b/community/events/safe-kubecon.md @@ -1,15 +1,14 @@ -### SAFE Recap @ [Kubecon Europe 2018](https://events.linuxfoundation.org/events/kubecon-cloudnativecon-europe-2018/) +# SAFE Recap @ [Kubecon Europe 2018](https://events.linuxfoundation.org/events/kubecon-cloudnativecon-europe-2018/) -SAFE had two sessions for introducing SAFE and getting feedback from the community. +SAFE had two sessions for introducing SAFE and getting feedback from the community. * [SAFE WG Intro](https://kccnceu18.sched.com/event/ENw3/safe-wg-intro-jeyappragash-j-j-padmeio-ray-colline-google-any-skill-level) * [SAFE WG Deep Dive](https://kccnceu18.sched.com/event/ENw5/safe-wg-deep-dive-ray-colline-google-intermediate-skill-level) We had a small but relevant group and hallway conversations were equally engaging and informative. -Excited to have [Liz Rice](https://github.com/lizrice) and [Justin Cormack](https://github.com/justincormack) join us. +Excited to have [Liz Rice](https://github.com/lizrice) and [Justin Cormack](https://github.com/justincormack) join us. -Across the board, everyone I had conversation with, there was a natural acknowledgement that security is an end-end problem and understanding secure access and providing a safe end-end system for enduser is critical. Highlighted at the [keynote by Alexis](https://twitter.com/MayaKaczorowski/status/991601395450171392?s=15). +Across the board, everyone I had conversation with, there was a natural acknowledgement that security is an end-end problem and understanding secure access and providing a safe end-end system for end-user is critical. Highlighted at the [keynote by Alexis](https://twitter.com/MayaKaczorowski/status/991601395450171392?s=15). We are just getting started on this, incredibly excited to be part of this team and the effort! - From 98feb2d5589ee31b7b51b34aa25c23e64e6883c6 Mon Sep 17 00:00:00 2001 From: Marco De Benedictis Date: Wed, 19 Jun 2024 15:44:17 +0200 Subject: [PATCH 6/6] ci: update link test retries on 429 Signed-off-by: Marco De Benedictis --- ci/link-config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/link-config.json b/ci/link-config.json index 1ad3a9dbe..0e43c9de4 100644 --- a/ci/link-config.json +++ b/ci/link-config.json @@ -1,13 +1,13 @@ { "aliveStatusCodes": [200,206,402], - "fallbackRetryDelay": "5s", + "fallbackRetryDelay": "10s", "replacementPatterns": [ { "pattern": "^/", "replacement": "{{BASEURL}}/" } ], - "retryCount": 3, + "retryCount": 5, "retryOn429": true, "timeout": "20s", "httpHeaders": [