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
mkdir -p ~/dev/backups/charts/ | |
gsutil -m cp -r gs://chart-bucket ~/dev/backups/charts/ | |
cd ~/dev/backups/charts/chart-bucket/charts | |
helm repo index . | |
gsutil cp ~/dev/backups/charts/chart-bucket/charts/index.yaml gs://chart-bucket/charts/index.yaml |
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
apiVersion: v1 | |
description: A Helm chart for Kubernetes | |
icon: https://raw.githubusercontent.com/jenkins-x/jenkins-x-platform/master/images/java.png | |
name: db-init | |
version: 0.0.1 |
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
kubectl get pods --all-namespaces | grep Error | awk '{print $2}' | xargs kubectl delete pod -n jx |
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
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> | |
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> | |
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> | |
<link rel="manifest" href="/site.webmanifest"> | |
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"> | |
<meta name="msapplication-TileColor" content="#2d89ef"> | |
<meta name="theme-color" content="#ffffff"> |
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
➜ ~ k get cm config -o yaml | |
apiVersion: v1 | |
data: | |
config.yaml: | | |
branch-protection: | |
orgs: | |
jenkins-x: | |
repos: | |
dummy: | |
required_status_checks: |
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
import log from 'llog' | |
import path from 'path' | |
import fastifyStatic from 'fastify-static' | |
import fastifyCompress from 'fastify-compress' | |
import { service } from './service' | |
import sdkData from './sdkData' | |
import UA from 'browserslist-useragent' | |
const { src, legacySrc } = sdkData |
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
047361e93acf107deafdb46d087b8dd47112ecb638b165e38a7ea310f71664ec274c82f691bf88f2e62a5337c882dc2fefb43dd93bb048d38dced12a783189b8bf |
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
~ $ docker service logs svtifpxlbxye | |
[email protected] | debug: [EG:gateway] Initiating Event Bus | |
[email protected] | info: [EG:config] Registered schema for users model. | |
[email protected] | debug: [EG:config] REDIS_HOST replaced in configuration file | |
[email protected] | debug: [EG:config] REDIS_PORT replaced in configuration file | |
[email protected] | info: [EG:config] Registered schema for credentials model. | |
[email protected] | info: [EG:config] Registered schema for applications model. | |
[email protected] | debug: [EG:config] ConfigPath: /usr/src/service/config/system.config.yml | |
[email protected] | debug: [EG:config] |
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
version: "3" | |
networks: | |
default: | |
proxy: | |
external: true | |
volumes: |
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
Show hidden characters
{ | |
"presets": [ | |
["env", { | |
"targets": { | |
"node": "current" | |
} | |
}] | |
], | |
"plugins": [ | |
["module-resolver", { |
NewerOlder