-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(node-exporter): add a node exporter job fix(github-exporter): bump version fix(github-exporter): use the variable in the artifact string instead of hard-coding it fix(github-exporter): template the secret to be read into the environment fix(jenkins): use vault secret in template fix(grafana): use podman driver BREAKING CHANGE: no longer use the exec driver chore(monitoring): bump versions refactor(monitoring): lookup mysql service in the consul catalog fix(prometheus): fix path to metrics fix(promtail): add nomad job log scraping Signed-off-by: Bruce Becker <[email protected]> --------- Signed-off-by: Bruce Becker <[email protected]>
- Loading branch information
1 parent
02f5feb
commit 4ed4818
Showing
9 changed files
with
434 additions
and
262 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
{{ with secret "hashiatho.me-v2/jenkins" }} | ||
--- | ||
jenkins: | ||
agentprotocols: | ||
- "JNLP4-connect" | ||
- "Ping" | ||
numExecutors: 0 | ||
authorizationStrategy: | ||
globalMatrix: | ||
permissions: | ||
- "Overall/Administer:{{ .Data.data.admin_username }}" | ||
|
||
crumbIssuer: | ||
strict: | ||
checkSessionMatch: false | ||
disableRememberMe: false | ||
markdownFormatter: "plainText" | ||
mode: NORMAL | ||
myViewsTabBar: "standard" | ||
nodeMonitors: | ||
- diskSpaceMonitor: | ||
freeSpaceThreshold: "1GB" | ||
- tmpSpace: | ||
freeSpaceThreshold: "1GB" | ||
remotingSecurity: | ||
enabled: true | ||
systemMessage: "This the best ever message" | ||
slaveAgentPort: ${NOMAD_PORT_agent} | ||
securityRealm: | ||
local: | ||
allowsSignup: false | ||
users: | ||
- id: "{{ .Data.data.admin_username }}" | ||
password: "{{ .Data.data.admin_password }}" | ||
clouds: | ||
- nomad: | ||
clientPassword: "" | ||
name: "nomad" | ||
nomadUrl: "http://nomad.service.consul:4646" | ||
prune: true | ||
serverPassword: "" | ||
tlsEnabled: false | ||
workerTimeout: 1 | ||
|
||
security: | ||
apiToken: | ||
creationOfLegacyTokenEnabled: false | ||
tokenGenerationOnCreationEnabled: false | ||
usageStatisticsEnabled: true | ||
globalJobDslSecurityConfiguration: | ||
useScriptSecurity: true | ||
sSHD: | ||
port: -1 | ||
unclassified: | ||
prometheusConfiguration: | ||
appendParamLabel: true | ||
appendStatusLabel: true | ||
collectDiskUsage: true | ||
collectingMetricsPeriodInSeconds: 60 | ||
countAbortedBuilds: true | ||
countFailedBuilds: true | ||
countNotBuiltBuilds: true | ||
countSuccessfulBuilds: true | ||
countUnstableBuilds: true | ||
defaultNamespace: "default" | ||
fetchTestResults: true | ||
jobAttributeName: "jenkins_job" | ||
path: "prometheus" | ||
processingDisabledBuilds: false | ||
useAuthenticatedEndpoint: false | ||
{{ end }} |
Oops, something went wrong.