Skip to content

Commit 55b9aa0

Browse files
authored
Move to latest events/permissions (#68)
# Summary - [x] bump go to `1.21` - [x] uplift to latest events and permissions - [x] Remove manual pubsubhooks in favor of upstream `x`, now that it has annotation to tag an ent field as an `additionalSubject` in the event message - [x] add tracing to chart --------- Signed-off-by: Matt Siwiec <[email protected]>
1 parent fa3525e commit 55b9aa0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+672
-1228
lines changed

.devcontainer/.env

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ COCKROACH_URL="postgresql://root@crdb:26257/ipam_dev?sslmode=disable"
66
# ipam config
77
ATLAS_DB_URI="postgresql://root@crdb:26257/atlas_migrations?sslmode=disable"
88
IPAMAPI_CRDB_URI="postgresql://root@crdb:26257/ipam_dev?sslmode=disable"
9-
IPAMAPI_EVENTS_PUBLISHER_NATS_CREDSFILE="/workspaces/ipam-api/.devcontainer/nsc/nkeys/creds/LOCAL/IPAM/USER.creds"
10-
IPAMAPI_EVENTS_PUBLISHER_PREFIX="com.example"
9+
IPAMAPI_EVENTS_NATS_CREDSFILE="/workspaces/ipam-api/.devcontainer/nsc/nkeys/creds/LOCAL/IPAM/USER.creds"
10+
IPAMAPI_EVENTS_NATS_PUBLISHPREFIX=com.infratographer
11+
IPAMAPI_PERMISSIONS_IGNORENORESPONDERS=true
12+
1113
# IPAMAPI_TRACING_ENABLED="true"
1214
# IPAMAPI_TRACING_PROVIDER="passthrough"
1315

.devcontainer/Dockerfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
ARG GO_VERSION=1.21
2+
13
# Used to install CRDB into the devcontainer
24
FROM cockroachdb/cockroach:latest-v22.2 as CRDB
35

4-
FROM mcr.microsoft.com/vscode/devcontainers/go:0-1.20-bullseye
6+
FROM mcr.microsoft.com/vscode/devcontainers/go:1-${GO_VERSION}-bullseye
57

68
# Set up crdb
79
RUN mkdir /usr/local/lib/cockroach

.devcontainer/devcontainer.json

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"editor.defaultFormatter": "golang.go"
1313
},
1414
"go.buildTags": "testtools",
15+
"go.formatTool": "goimports",
1516
"go.lintTool": "golangci-lint",
1617
"gopls": {
1718
"formatting.gofumpt": true,

.devcontainer/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ services:
99
context: .
1010
dockerfile: Dockerfile
1111
args:
12-
VARIANT: 1.20-bullseye
12+
VARIANT: 1.21-bullseye
1313
NODE_VERSION: "none"
1414
# Overrides default command so things don't shut down after the process ends.
1515
command: sleep infinity

chart/ipam-api/Chart.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
dependencies:
22
- name: common
33
repository: https://charts.bitnami.com/bitnami
4-
version: 2.6.0
4+
version: 2.13.4
55
- name: reloader
66
repository: https://stakater.github.io/stakater-charts
7-
version: 1.0.32
8-
digest: sha256:698c6c812d8f6a1538349c9368c6caeaac412af707d431453c74600f1aba5761
9-
generated: "2023-07-29T00:57:46.327102562Z"
7+
version: 1.0.54
8+
digest: sha256:2bfa09e93ff7ea83fb0aad3ddedbd4afcc2c578a3d2a4b7ab2feb4980c981338
9+
generated: "2023-12-20T18:32:04.737779584Z"

chart/ipam-api/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ dependencies:
1111
repository: https://charts.bitnami.com/bitnami
1212
tags:
1313
- bitnami-common
14-
version: 2.6.0
14+
version: 2.13.4
1515
- name: reloader
1616
condition: reloader.enabled
17-
version: "1.0.32"
17+
version: "1.0.54"
1818
repository: "https://stakater.github.io/stakater-charts"
-14.5 KB
Binary file not shown.
-5.82 KB
Binary file not shown.

chart/ipam-api/templates/api-config.yaml

+20-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,33 @@ metadata:
55
labels:
66
{{- include "common.labels.standard" . | nindent 4 }}
77
data:
8-
IPAMAPI_EVENTS_PUBLISHER_PREFIX: "{{ .Values.api.events.topicPrefix }}"
9-
IPAMAPI_EVENTS_PUBLISHER_URL: "{{ .Values.api.events.connectionURL }}"
8+
IPAMAPI_EVENTS_NATS_URL: "{{ .Values.api.events.nats.url }}"
9+
IPAMAPI_EVENTS_NATS_PUBLISHPREFIX: "{{ .Values.api.events.nats.publishPrefix }}"
10+
IPAMAPI_EVENTS_NATS_QUEUEGROUP: "{{ .Values.api.events.nats.queueGroup }}"
11+
IPAMAPI_EVENTS_NATS_SOURCE: "{{ .Values.api.events.nats.source }}"
12+
IPAMAPI_EVENTS_NATS_CONNECTTIMEOUT: "{{ .Values.api.events.nats.connectTimeout }}"
13+
IPAMAPI_EVENTS_NATS_SHUTDOWNTIMEOUT: "{{ .Values.api.events.nats.shutdownTimeout }}"
14+
{{- if .Values.api.events.nats.credsSecretName }}
15+
IPAMAPI_EVENTS_NATS_CREDSFILE: "{{ .Values.api.events.nats.credsFile }}"
16+
{{- end }}
1017
IPAMAPI_OIDC_ENABLED: "{{ .Values.api.oidc.enabled }}"
1118
IPAMAPI_OIDC_AUDIENCE: "{{ .Values.api.oidc.audience }}"
1219
IPAMAPI_OIDC_ISSUER: "{{ .Values.api.oidc.issuer }}"
1320
IPAMAPI_OIDC_JWKS_REMOTE_TIMEOUT: "{{ .Values.api.oidc.jwksRemoteTimeout }}"
21+
IPAMAPI_PERMISSIONS_IGNORENORESPONDERS: "{{ .Values.api.permissions.ignoreNoResponders }}"
1422
IPAMAPI_PERMISSIONS_URL: "{{ .Values.api.permissions.url }}"
1523
IPAMAPI_SERVER_LISTEN: ":{{ .Values.api.listenPort }}"
1624
IPAMAPI_SERVER_SHUTDOWN_GRACE_PERIOD: "{{ .Values.api.shutdownGracePeriod }}"
25+
{{- if .Values.api.tracing.enabled }}
26+
IPAMAPI_TRACING_ENABLED: "{{ .Values.api.tracing.enabled }}"
27+
IPAMAPI_TRACING_PROVIDER: "{{ .Values.api.tracing.provider }}"
28+
IPAMAPI_TRACING_ENVIRONMENT: "{{ .Values.api.tracing.environment }}"
29+
{{- if eq .Values.api.tracing.provider "otlpgrpc" }}
30+
IPAMAPI_TRACING_OTLP_ENDPOINT: "{{ .Values.api.tracing.otlp.endpoint }}"
31+
IPAMAPI_TRACING_OTLP_INSECURE: "{{ .Values.api.tracing.otlp.insecure }}"
32+
IPAMAPI_TRACING_OTLP_CERTIFICATE: "{{ .Values.api.tracing.otlp.certificate }}"
33+
{{- end }}
34+
{{- end }}
1735
{{- with .Values.api.trustedProxies }}
1836
IPAMAPI_SERVER_TRUSTED_PROXIES: "{{ join " " . }}"
1937
{{- end }}

chart/ipam-api/templates/deployment.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ spec:
6767
{{- end }}
6868
{{- end }}
6969
envFrom:
70+
{{- if .Values.api.extraEnvFrom }}
71+
{{- toYaml .Values.api.extraEnvFrom | nindent 12 }}
72+
{{- end }}
7073
- secretRef:
7174
name: {{ .Values.api.db.uriSecret }}
7275
- configMapRef:
@@ -92,7 +95,7 @@ spec:
9295
path: /readyz
9396
port: http
9497
volumeMounts:
95-
{{- if .Values.api.events.auth.secretName }}
98+
{{- if .Values.api.events.nats.credsSecretName }}
9699
- name: events-creds
97100
mountPath: /nats
98101
{{- end }}
@@ -116,10 +119,10 @@ spec:
116119
{{- toYaml . | nindent 8 }}
117120
{{- end }}
118121
volumes:
119-
{{- if .Values.api.events.auth.secretName }}
122+
{{- if .Values.api.events.nats.credsSecretName }}
120123
- name: events-creds
121124
secret:
122-
secretName: "{{ .Values.api.events.auth.secretName }}"
125+
secretName: "{{ .Values.api.events.nats.credsSecretName }}"
123126
{{- end }}
124127
{{- if .Values.api.db.certSecret }}
125128
- name: dbcerts

chart/ipam-api/values.yaml

+35-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
image:
22
repository: ghcr.io/infratographer/ipam-api
33
pullPolicy: IfNotPresent
4-
tag: "v0.0.13"
4+
tag: "main-latest"
55

66
imagePullSecrets: []
77
nameOverride: ""
@@ -34,16 +34,31 @@ api:
3434
listenPort: 7608
3535
extraLabels: {}
3636
extraAnnotations: {}
37+
extraEnvFrom: {}
3738
extraEnvVars: {}
3839
resources: {}
3940
podSecurityContext: {}
4041
securityContext: {}
4142
events:
42-
connectionURL: "my-events-cluster.example.com:4222"
43-
auth:
44-
secretName: "events-creds"
45-
credsPath: "/nats/creds"
46-
topicPrefix: "com.infratographer"
43+
nats:
44+
# url is the event server connection url
45+
url: "nats://my-events-cluster.example.com:4222"
46+
# publishPrefix is the subscribe event prefix
47+
publishPrefix: "com.infratographer"
48+
# queueGroup defines the events queue group
49+
queueGroup: ""
50+
# source defines the source of the events (defaults to application name)
51+
source: ""
52+
# connectTimeout is event connection timeout
53+
connectTimeout: "10s"
54+
# shutdownTimeout is the shutdown grace period
55+
shutdownTimeout: "5s"
56+
# tokenSecretName is the secret to load the auth token
57+
tokenSecretName: ""
58+
# credsSecretName is the secret to load the creds auth file from
59+
credsSecretName: ""
60+
# credsFile is the location to read the creds file from
61+
credsFile: "/nats/creds"
4762
db:
4863
uriSecret: ipam-api-db-uri
4964
certSecret: ipam-api-db-ca
@@ -58,12 +73,26 @@ api:
5873

5974
permissions:
6075
url: ""
76+
# ignoreNoResponders whether or not to ignore errors when no AuthRelationship request-reply responders are available
77+
ignoreNoResponders: false
6178

6279
shutdownGracePeriod: 5s
6380
trustedProxies: []
6481
# - "1.2.3.4"
6582
# - "1.2.3.4/32"
6683
# - "1.2.3.0/24"
84+
tracing:
85+
# enabled is true if OpenTelemetry tracing should be enabled for permissions-api
86+
enabled: false
87+
# environment is the OpenTelemetry tracing environment to use
88+
environment: ""
89+
# provider is the OpenTelemetry tracing provider to use
90+
provider: stdout
91+
otlp:
92+
# endpoint is the OpenTelemetry Protocol (OTLP) collector endpoint to send traces to
93+
endpoint: ""
94+
# insecure is true if TLS should not be required when sending traces
95+
insecure: false
6796

6897
reloader:
6998
enabled: false

cmd/serve.go

+12-7
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525

2626
"go.infratographer.com/ipam-api/internal/config"
2727
ent "go.infratographer.com/ipam-api/internal/ent/generated"
28-
"go.infratographer.com/ipam-api/internal/ent/generated/pubsubhooks"
28+
"go.infratographer.com/ipam-api/internal/ent/generated/eventhooks"
2929
"go.infratographer.com/ipam-api/internal/graphapi"
3030
)
3131

@@ -65,7 +65,7 @@ func init() {
6565
serveCmd.Flags().BoolVar(&enablePlayground, "playground", false, "enable the graph playground")
6666
serveCmd.Flags().StringVar(&pidFileName, "pid-file", "", "path to the pid file")
6767

68-
events.MustViperFlagsForPublisher(viper.GetViper(), serveCmd.Flags(), appName)
68+
events.MustViperFlags(viper.GetViper(), serveCmd.Flags(), appName)
6969
permissions.MustViperFlags(viper.GetViper(), serveCmd.Flags())
7070
}
7171

@@ -79,11 +79,15 @@ func serve(ctx context.Context) error {
7979
logger = loggingx.InitLogger(appName, config.AppConfig.Logging)
8080
}
8181

82-
pub, err := events.NewPublisher(config.AppConfig.Events.Publisher)
82+
events, err := events.NewConnection(config.AppConfig.Events, events.WithLogger(logger))
8383
if err != nil {
84-
logger.Fatalw("failed to create publisher", "error", err)
84+
logger.Fatalw("failed to create events connection", "error", err)
8585
}
8686

87+
defer func() {
88+
_ = events.Shutdown(ctx)
89+
}()
90+
8791
err = otelx.InitTracer(config.AppConfig.Tracing, appName, logger)
8892
if err != nil {
8993
logger.Fatalw("failed to initialize tracer", "error", err)
@@ -98,7 +102,7 @@ func serve(ctx context.Context) error {
98102

99103
entDB := entsql.OpenDB(dialect.Postgres, db)
100104

101-
cOpts := []ent.Option{ent.Driver(entDB), ent.EventsPublisher(pub)}
105+
cOpts := []ent.Option{ent.Driver(entDB), ent.EventsPublisher(events)}
102106

103107
if config.AppConfig.Logging.Debug {
104108
cOpts = append(cOpts,
@@ -110,7 +114,7 @@ func serve(ctx context.Context) error {
110114
client := ent.NewClient(cOpts...)
111115
defer client.Close()
112116

113-
pubsubhooks.PubsubHooks(client)
117+
eventhooks.EventHooks(client)
114118

115119
// Run the automatic migration tool to create all schema resources.
116120
if err := client.Schema.Create(ctx); err != nil {
@@ -130,14 +134,15 @@ func serve(ctx context.Context) error {
130134
middleware = append(middleware, auth.Middleware())
131135
}
132136

133-
srv, err := echox.NewServer(logger.Desugar(), config.AppConfig.Server, versionx.BuildDetails())
137+
srv, err := echox.NewServer(logger.Desugar(), config.AppConfig.Server, versionx.BuildDetails(), echox.WithLoggingSkipper(echox.SkipDefaultEndpoints))
134138
if err != nil {
135139
logger.Error("failed to create server", zap.Error(err))
136140
}
137141

138142
perms, err := permissions.New(config.AppConfig.Permissions,
139143
permissions.WithLogger(logger),
140144
permissions.WithDefaultChecker(permissions.DefaultAllowChecker),
145+
permissions.WithEventsPublisher(events),
141146
)
142147
if err != nil {
143148
logger.Fatal("failed to initialize permissions", zap.Error(err))

0 commit comments

Comments
 (0)