Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump github.com/miekg/dns from 1.1.58 to 1.1.62 #4

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .envrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kubectl cluster-info --context kind-kind
use flake
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ tilt_modules
.helm
.vscode
.idea
.history
.history
.direnv/
15 changes: 15 additions & 0 deletions Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,20 @@ helm_remote('cilium',
repo_url='https://helm.cilium.io')
k8s_yaml('./test/cilium/dual-stack/crd-values.yaml')

# Cert-manager
helm_remote('cert-manager',
version="v1.15.3",
namespace="kube-system",
repo_name='jetstack',
set=['crds.enabled=true'],
repo_url='https://charts.jetstack.io')
k8s_yaml('./test/cert-manager/clusterIssuer.yaml')

helm_remote('cert-manager-webhook-pinax',
version="0.1.0",
namespace="kube-system",
repo_name='oci://ghcr.io/pinax-network/charts',
set=['certManager.namespace=kube-system'])

# CoreDNS with updated RBAC
k8s_yaml(helm(
Expand Down Expand Up @@ -82,3 +96,4 @@ k8s_yaml('./test/gateway-api/resources.yml')
k8s_yaml('./test/gatewayclasses.yaml')
k8s_yaml('./test/dual-stack/service-annotation.yml')
k8s_yaml('./test/dual-stack/ingress-services.yml')
k8s_yaml('./test/dual-stack/certificate.yaml')
5 changes: 4 additions & 1 deletion charts/k8s-gateway/templates/rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ rules:
- apiGroups: ["k8s.nginx.org"]
resources: ["*"]
verbs: ["watch", "list"]
- apiGroups: ["acme.cert-manager.io"]
resources: ["*"]
verbs: ["watch", "list"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
Expand All @@ -48,4 +51,4 @@ roleRef:
subjects:
- kind: ServiceAccount
name: {{ include "k8s-gateway.serviceAccountName" . }}
namespace: {{ .Release.Namespace }}
namespace: {{ .Release.Namespace }}
61 changes: 61 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
description = "k8s_gateway test with cert-manager";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";

outputs =
inputs@{ self, ... }:
inputs.flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = inputs.nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [
gnumake
k9s
kubectl
kubernetes-helm
kind
tilt
yq
];
};
}
);
}
Loading
Loading