Skip to content

Instantly share code, notes, and snippets.

- name: gateway-api
display_name: Kubernetes Gateway API
description: The Gateway API is a part of SIG Network, and this repository contains the specification and Custom Resource Definitions (CRDs).
category: orchestration
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/kubernetes/icon/color/kubernetes-icon-color.svg
devstats_url:
accepted_at: ""
maturity:
repositories:
- name: gateway-api

Code of Conduct

Our Pledge

We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.

We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.

Message Queuing Model NATS RabbitMQ NSQ Kafka
Delivery Guarantee At-most-once At-least-once At-least-once At-most-once, At-least-once, Exactly-once
Ordering Guarantee No Yes No Yes
Throughput Up
#!/bin/bash
#set -ex
# vi: et st=2 sts=2 ts=2 sw=2 cindent bg=dark
#Harbor on Ubuntu 22.04
# Unless ENV VAR 'IPorFQDN' is already set in CLI,
# prompt for the user to ask if the install should use the IP Address or Fully Qualified Domain Name of the Harbor Server
if [ -z "$IPorFQDN" ];then

git pull

git pull

Create Branch

git checkout -b blog_name main
@hrittikhere
hrittikhere / onedrive.md
Last active December 17, 2022 12:23
Onedrive cli for upload/monitor/synchronize for linux to cloud

Use the onedrive protocol and connect to the graph.microsoft.com host:

From the prompt enter the connect command:

onedrive
connect onedrive://graph.microsoft.com
#!/bin/sh
# Update Base System
sudo apt update -y
sudo apt upgrade -y
# Install Docker
echo -e "\e[1;31m Installing Docker \e[0m"
curl -fsSL https://get.docker.com | bash
sudo usermod -aG docker $USER
@hrittikhere
hrittikhere / sign-off.md
Created June 24, 2022 17:53
A sign-off message in the following format appear on each commit in the pull request

If it requires a sign-off message in the following format appear on each commit in the pull request:

This is my commit message

Signed-off-by: Random Developer <random@developer.example.org>

The text can either be manually added to your commit body, or you can add either -s or --signoff to your usual git commit commands.

Service OpenStack AWS
Virtual Servers Nova Instance EC2
Docker Magnum ECS
Scalability Heat with Scaling AWS Scaling
Load Balancing LBaas Elastic Load Balancing
API OpenStack API EC2 AP
GUI Horizon Console
Storage Object Swift S3
Block Storage Cinder EBS
# -*- mode: ruby -*-
# vi: set ft=ruby :
default_box = "generic/opensuse42"
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.