mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-07 16:27:27 +00:00
The sourcesecret package now uses pkg/runtime/secrets factory functions instead of the previous monolithic approach. This provides standardized secret generation with consistent validation and error handling across all authentication types. Signed-off-by: cappyzawa <cappyzawa@gmail.com>
12 lines
195 B
YAML
12 lines
195 B
YAML
---
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: proxy-secret
|
|
namespace: my-namespace
|
|
stringData:
|
|
address: https://my-proxy.com
|
|
password: my-password
|
|
username: my-username
|
|
type: Opaque
|
|
|