This file contains hidden or 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
The Apache Software Foundation | |
Membership Application | |
Thank you for your interest in The Apache Software Foundation (the | |
"Foundation"). To apply for membership, please complete this application | |
scan it into pdf form, and email it to [email protected]. | |
Alternatively, you may fax the completed form to +1-919-573-9199. | |
If necessary, you may mail a copy of the completed form to | |
The Apache Software Foundation, Dept. 9660, |
This file contains hidden or 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: "Saiku-" | |
LICENSE: | |
BIPLUGIN: false | |
BIPLUGIN5: false | |
BASE_URL: "https://interactive-examples.mdn.mozilla.net" | |
TOMCAT_WEBAPP: "/saiku" | |
REST_MOUNT_POINT: "/rest/saiku/" | |
DIMENSION_PREFETCH: true | |
DIMENSION_SHOW_ALL: true | |
DIMENSION_HIDE_HIERARCHY: SINGLE_LEVEL |
This file contains hidden or 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
kubelet-extra-args: | |
default: "" | |
description: | | |
Space separated list of flags and key=value pairs that will be passed as arguments to | |
kubelet. For example a value like this: | |
runtime-config=batch/v2alpha1=true profiling=true | |
will result in kube-apiserver being run with the following options: | |
--runtime-config=batch/v2alpha1=true --profiling=true | |
source: user | |
type: string |
This file contains hidden or 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
JanusGraphVertex ve = graph.addVertex("metadata"); | |
Iterable<JanusGraphVertex> edgeverts = graph.query().has("productid", product.getProductId()) | |
.vertices(); | |
for (JanusGraphVertex edgevert : edgeverts) { | |
ve.addEdge("contains", edgevert); | |
} |
This file contains hidden or 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
ubuntu@grumpy-stev:~$ fdisk /dev/ | |
/dev/mmcblk0 /dev/mmcblk0boot0 /dev/mmcblk0boot1 /dev/mmcblk0p1 /dev/mmcblk0p2 /dev/mmcblk0p5 /dev/mmcblk0rpmb /dev/sda | |
Jul 12 11:19:55 grumpy-stev systemd[1]: Starting Execute cloud user/final scripts... | |
Jul 12 11:20:06 grumpy-stev cloud-init[2685]: curtin: Installation started. (0.1.0~bzr505-0ubuntu1~16.04.1) | |
Jul 12 11:20:10 grumpy-stev cloud-init[2685]: [Errno 6] No such device or address: '/dev/mmcblk0p2' | |
Jul 12 11:20:11 grumpy-stev cloud-init[2685]: curtin: Installation failed with exception: Unexpected error while running command. | |
Jul 12 11:20:11 grumpy-stev cloud-init[2685]: Command: ['curtin', 'block-meta', 'custom'] |
This file contains hidden or 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
17:50 holocron| could some one take a look at this pastebin and tell me what next steps to debugging might be? http://pastebin.com/7MHZV4e3 | |
17:52 holocron| this, specifically: unit-ceph-1: 12:57:00 INFO unit.ceph/1.update-status admin_socket: exception getting command descriptions: [Errno 111] Connection refused | |
17:55 * | shruthima quit (Reason: Quit: Page closed) | |
18:00 * | matthelmke_ joined #juju | |
18:05 * | frankban is now known as frankban|afk | |
18:10 spaok| stub: I guess what I'm confused on is, when I try to set the services structure for when haproxy joins, if do hookenv.relation_set(relation_id='somerelid:1', service_yaml) then the joined/changed | |
hook runs, haproxy doesn't get the services yaml, however if I do hookenv.relation_set(relation_id=None, service_yaml) then it does work, and haproxy builds the config right, but after a bit when | |
the update-status runs it errors because relation_id isn't set | |
18:10 * | wolverineav joined |
This file contains hidden or 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
@when('mysql.available') | |
def setup(mysql): | |
target = open('/var/lib/tomcat7/webapps/saiku/WEB-INF/classes/juju-datasources/mysql', "w") | |
target.write("name=mysql\njdbcurl=jdbc:mysql://"+mysql.host()+":"+str(mysql.port())+"/"+mysql.database+"\nusername="+mysql.user()+"\npassword="+mysql.password()+"\ndriver=com.mysql.jdbc.Driver") | |
@when('pgsql.master.available') | |
def setup_psql(psql): | |
target = open('/var/lib/tomcat7/webapps/saiku/WEB-INF/classes/juju-datasources/postgres', "w") | |
target.write("name=mysql\njdbcurl=jdbc:postgresql://"+psql.master.host+":"+str(psql.master.port)+"/"+psql.master.dbname+"\nusername="+psql.master.user+"\npassword="+psql.master.password+"\ndriver=org.postgresql.Driver") |
This file contains hidden or 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
package com.meteorite; | |
import org.ldaptive.*; | |
import org.ldaptive.auth.*; | |
import org.ldaptive.control.ResponseControl; | |
/** | |
* Hello world! | |
* | |
*/ |
This file contains hidden or 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-compose for Celgene | |
version: '2' | |
services: | |
celgene-web: | |
image: "docker-dev.redda.celgene.com/celgene-web" | |
ports: | |
- "80:80" | |
- "443:443" |
This file contains hidden or 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-compose for Celgene | |
version: '2' | |
services: | |
celgene-web: | |
image: "docker-dev.redda.celgene.com/celgene-web" | |
ports: | |
- "80:80" | |
- "443:443" |