Skip to content

Instantly share code, notes, and snippets.

integration namespace:
NAME READY STATUS RESTARTS AGE
integration-flink-jobmanager-b786567d-lt2d5 2/2 Running 2 92m
integration-flink-taskmanager-7b8c8c899d-v9rc6 1/1 Running 1 92m
integration-injector-github-0 1/1 Running 1 92m
integration-injector-github-74d4599b54-bgjqx 1/1 Running 3 92m
integration-injector-github-controller-f7d5f9bcb-d5djh 1/1 Running 5 92m
integration-itests 0/1 Error 0 4m55s
integration-kafka-0 1/1 Running 1 92m
integration-wiremock-66dffd9fdd-z25gr 1/1 Running 3 92m
make build
CGO_ENABLED=0 GO111MODULE=on go build -ldflags " -X github.com/jenkins-x/helmboot/pkg/version.Version=-dev+adabb8e -X github.com/jenkins-x/helmboot/pkg/version.Revision='adabb8e' -X github.com/jenkins-x/helmboot/pkg/version.Branch='master' -X github.com/jenkins-x/helmboot/pkg/version.BuildDate='20200211-15:58:14' -X github.com/jenkins-x/helmboot/pkg/version.GoVersion='1.13.7' " -o build/helmboot cmd/helmboot/helmboot.go
go: github.com/jenkins-x/jx@v0.0.0-20200205060623-f7c50978003a requires
github.com/antham/chyle@v1.4.0 requires
github.com/spf13/cobra@v0.0.0-00000000000000-c46add8a6528: invalid pseudo-version: malformed time "00000000000000"
make: *** [build] Error 1
Waiting for external loadbalancer to be created and update the nginx-ingress-controller service in kube-system namespace
Note: this loadbalancer will fail to be provisioned if you have insufficient quotas, this can happen easily on a GKE free account. To view quotas run: gcloud compute project-info describe
External loadbalancer created
? Domain 35.204.148.22.nip.io
nginx ingress controller installed and configured
Lets set up a git username and API token to be able to perform CI/CD
? Do you wish to use rajdavies as the GitHub username for CI/CD pipelines: Yes
? A local Jenkins X cloud environments repository already exists, recreate with latest? Yes
Cloning the Jenkins X cloud environments repo to /Users/rajdavies/.jx/cloud-environments(Y/n) Y
Counting objects: 545, done.
[INFO] Downloading: http://nexus/repository/maven-group/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar
[INFO] Downloaded: http://nexus/repository/maven-group/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar (73 KB at 121.1 KB/sec)
[INFO] Downloading: http://nexus/repository/maven-group/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.jar
[INFO] Downloaded: http://nexus/repository/maven-group/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar (242 KB at 403.3 KB/sec)
[INFO] Downloaded: http://nexus/repository/maven-group/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.jar (50 KB at 72.8 KB/sec)
[INFO] Downloaded: http://nexus/repository/maven-group/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar (46 KB at 66.0 KB/sec)
[INFO] Downloaded: http://nexus/repository/maven-group/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar (9 KB at 12.0 KB/sec)
[INFO] Downloaded: http://nexus/repository/maven-group/
Status: Downloaded newer image for openjdk:8-jdk-alpine
---> 224765a6bdbe
Step 2/6 : ENV PORT 8080
---> Running in 18acf1a3f255
---> 2b4b64a74df8
Step 3/6 : EXPOSE 8080
---> Running in 4ab02c6a1007
---> bf62f2a2aa77
Step 4/6 : COPY target/*.jar /opt/app.jar
Error: running skaffold steps: build: build step: running build for artifact: running build: No source files were specified
Skip to content
titletitle admin | log out
search
5
New version of Jenkins (2.118) is available for download (changelog).
Or Upgrade Automatically
Disable CLI over Remoting
Skip to content
titletitle admin | log out
search
5
New version of Jenkins (2.118) is available for download (changelog).
Or Upgrade Automatically
Disable CLI over Remoting
..Unable to get an update from the "releases" chart repository (http://admin:admin@chartmuseum.jx.192.168.64.33.nip.io):
Get http://admin:admin@chartmuseum.jx.192.168.64.33.nip.io/index.yaml: dial tcp 192.168.64.33:80: i/o timeout
Update Complete. ⎈ Happy Helming!⎈
helm install jenkins-x/jenkins-x-platform --name jenkins-x -f ./myvalues.yaml -f ./secrets.yaml --version 0.0.507 --values=/Users/rajdavies/.jx/gitSecrets.yaml --values=/Users/rajdavies/.jx/adminSecrets.yaml --values=/Users/rajdavies/.jx/extraValues.yaml --namespace=jx --timeout=6000
Error: release jenkins-x failed: roles.rbac.authorization.k8s.io "cleanup" is forbidden: attempt to grant extra privileges: [PolicyRule{Resources:["ingresses"], APIGroups:["extensions"], Verbs:["get"]} PolicyRule{Resources:["ingresses"], APIGroups:["extensions"], Verbs:["list"]} PolicyRule{Resources:["ingresses"], APIGroups:["extensions"], Verbs:["watch"]} PolicyRule{Resources:["ingresses"], APIGroups:["extensions"], Verbs:["patch"]} PolicyRule{Resources:["ingresses"]
Merged "foo-cluster" as current context in /Users/rajdavies/.kube/config
clusterrolebinding "add-on-cluster-admin" created
Context "foo-cluster" modified.
Trying to create ClusterRoleBinding clusteruser-foo-foo-cluster-cluster-admin-binding for role: cluster-admin for user clusteruser-foo-foo-cluster
clusterrolebinding "clusteruser-foo-foo-cluster-cluster-admin-binding" created
Created ClusterRoleBinding clusteruser-foo-foo-cluster-cluster-admin-binding
Created ServiceAccount tiller in namespace kube-system
Trying to create ClusterRoleBinding tiller for role: cluster-admin and ServiceAccount: kube-system/tiller
Created ClusterRoleBinding tiller
Initialising helm using ServiceAccount tiller in namespace kube-system
#!/usr/bin/python
import os
from BaseHTTPServer import BaseHTTPRequestHandler,HTTPServer
PORT_NUMBER = 8080
class myHandler(BaseHTTPRequestHandler):
path_to_image = 'logo.png'
img = open(path_to_image, 'rb')
statinfo = os.stat(path_to_image)