Skip to content

Commit

Permalink
update to new versions
Browse files Browse the repository at this point in the history
  • Loading branch information
biemond committed Nov 8, 2014
1 parent 431910e commit 8656e03
Show file tree
Hide file tree
Showing 1,656 changed files with 73,512 additions and 17,230 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The WebLogic Vagrant project is a set of subprojects that will help you create v
At the moment, we have these projects:

* [wls11g-centos-clustered](https://github.com/weblogic-community/weblogic-vagrant/tree/master/wls11g-centos-clustered) will give you a WebLogic 11g 10.3.6 Virtual Machine on CentOS 6.5-x86_64
* [wls1213-centos-clustered](https://github.com/weblogic-community/weblogic-vagrant/tree/master/wls1213-centos-clustered) will give you a WebLogic 12c 12.1.3 Virtual Machine on CentOS 6.5-x86_64
* [wls12c-solaris-clustered](https://github.com/weblogic-community/weblogic-vagrant/tree/master/wls12c-solaris-clustered) will give you three VMs with clustered WebLogic 12c 12.1.2 on Solaris 10 x86_64
* [wls12c-centos-standalone](https://github.com/weblogic-community/weblogic-vagrant/tree/master/wls12c-centos-standalone) will give you one VM with standalone WebLogic 12c 12.1.2 on CentOS 6.5-x86_64

Expand Down
10 changes: 5 additions & 5 deletions wls11g-centos-clustered/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This is what you need to download and install to get the environment stood up.

* [VagrantUP (latest)](http://www.vagrantup.com)
* [Oracle VirtualBox (latest)](http://www.virtualbox.org)
* [Oracle JDK 7u51](http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html) (a)
* [Oracle JDK 7u55](http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html) (a)
* [Oracle WebLogic 11g 10.3.6](http://www.oracle.com/technetwork/middleware/weblogic/downloads/wls-for-dev-1703574.html) - download **wls1036_generic.jar**
* [Git](https://help.github.com/articles/set-up-git) client

Expand All @@ -20,8 +20,8 @@ This is what you need to download and install to get the environment stood up.
Software
--------
* CentOS 6.5 x86_64
* Puppet 3.4.2 Future Parser
* Oracle JDK 7 update 51
* Puppet 3.6.2 Future Parser
* Oracle JDK 7 update 55
* WebLogic 11g 10.3.6 (wls1036_generic.jar)
* WebLogic 11g 10.3.6 patch 17071663 (p17071663_1036_Generic.zip)

Expand All @@ -43,10 +43,10 @@ Get up and running
------------------
To have your virtual machines up and running, issue the following commands:

# Admin Server
# Admin Server
vagrant up admin

# Managed Server node1
# Managed Server node1
vagrant up node1

# Managed Server node2
Expand Down
49 changes: 25 additions & 24 deletions wls11g-centos-clustered/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,118 +8,119 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

config.vm.define "admin" , primary: true do |admin|
admin.vm.box = "centos-6.5-x86_64"
#admin.vm.box_url ="/Users/edwin/projects/packer-vagrant-builder/build/centos-6.5-x86_64.box"
admin.vm.box_url = "https://dl.dropboxusercontent.com/s/np39xdpw05wfmv4/centos-6.5-x86_64.box"

admin.vm.hostname = "admin.example.com"
admin.vm.synced_folder ".", "/vagrant", :mount_options => ["dmode=777","fmode=777"]
admin.vm.synced_folder "/tmp/software", "/software"
#admin.vm.synced_folder "/Users/edwin/software", "/software"

#admin.vm.synced_folder ".", "/vagrant", type: "nfs"
#admin.vm.synced_folder "/tmp/software", "/software", type: "nfs"

admin.vm.network :private_network, ip: "10.10.10.10"

admin.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "2048"]
vb.customize ["modifyvm", :id, "--name", "admin"]
end

admin.vm.provision :shell, :inline => "ln -sf /vagrant/puppet/hiera.yaml /etc/puppet/hiera.yaml"

admin.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet/manifests"
puppet.module_path = "puppet/modules"
puppet.manifest_file = "site.pp"
puppet.options = "--verbose --parser future --hiera_config /vagrant/puppet/hiera.yaml"
puppet.options = "--verbose --hiera_config /vagrant/puppet/hiera.yaml"

puppet.facter = {
"environment" => "development",
"vm_type" => "vagrant",
"override_weblogic_user" => "wls",
"override_weblogic_domain_folder" => "/opt/oracle/wlsdomains",
}

end

end

config.vm.define "node1" do |node1|

node1.vm.box = "centos-6.5-x86_64"
#node1.vm.box_url ="/Users/edwin/Downloads/centos-6.5-x86_64.box"
node1.vm.box_url = "https://dl.dropboxusercontent.com/s/np39xdpw05wfmv4/centos-6.5-x86_64.box"

node1.vm.hostname = "node1.example.com"
node1.vm.synced_folder ".", "/vagrant", :mount_options => ["dmode=777","fmode=777"]
node1.vm.synced_folder "/tmp/software", "/software"
#node1.vm.synced_folder "/Users/edwin/software", "/software"

#node1.vm.synced_folder ".", "/vagrant", type: "nfs"
#node1.vm.synced_folder "/Users/edwin/software", "/software", type: "nfs"



node1.vm.network :private_network, ip: "10.10.10.100"

node1.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "1532"]
vb.customize ["modifyvm", :id, "--name", "node1"]
end

node1.vm.provision :shell, :inline => "ln -sf /vagrant/puppet/hiera.yaml /etc/puppet/hiera.yaml"

node1.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet/manifests"
puppet.module_path = "puppet/modules"
puppet.manifest_file = "node.pp"
puppet.options = "--verbose --parser future --hiera_config /vagrant/puppet/hiera.yaml"
puppet.options = "--verbose --hiera_config /vagrant/puppet/hiera.yaml"

puppet.facter = {
"environment" => "development",
"vm_type" => "vagrant",
"override_weblogic_user" => "wls",
"override_weblogic_domain_folder" => "/opt/oracle/wlsdomains",
}

end

end

config.vm.define "node2" do |node2|

node2.vm.box = "centos-6.5-x86_64"
#node2.vm.box_url ="/Users/edwin/Downloads/centos-6.5-x86_64.box"
node2.vm.box_url = "https://dl.dropboxusercontent.com/s/np39xdpw05wfmv4/centos-6.5-x86_64.box"

node2.vm.hostname = "node2.example.com"
node2.vm.synced_folder ".", "/vagrant", :mount_options => ["dmode=777","fmode=777"]
node2.vm.synced_folder "/tmp/software", "/software"
#node2.vm.synced_folder "/Users/edwin/software", "/software"

#node2.vm.synced_folder ".", "/vagrant", type: "nfs"
#node2.vm.synced_folder "/Users/edwin/software", "/software", type: "nfs"


node2.vm.network :private_network, ip: "10.10.10.200", auto_correct: true

node2.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "1532"]
vb.customize ["modifyvm", :id, "--name", "node2"]
end

node2.vm.provision :shell, :inline => "ln -sf /vagrant/puppet/hiera.yaml /etc/puppet/hiera.yaml"

node2.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet/manifests"
puppet.module_path = "puppet/modules"
puppet.manifest_file = "node.pp"
puppet.options = "--verbose --parser future --hiera_config /vagrant/puppet/hiera.yaml"
puppet.options = "--verbose --hiera_config /vagrant/puppet/hiera.yaml"

puppet.facter = {
"environment" => "development",
"vm_type" => "vagrant",
"override_weblogic_user" => "wls",
"override_weblogic_domain_folder" => "/opt/oracle/wlsdomains",
}

end

end
Expand Down
15 changes: 0 additions & 15 deletions wls11g-centos-clustered/puppet/apps/one/clusters/one_clusters.yaml

This file was deleted.

20 changes: 0 additions & 20 deletions wls11g-centos-clustered/puppet/apps/one/jms/cf/one_cf.yaml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

35 changes: 0 additions & 35 deletions wls11g-centos-clustered/puppet/apps/one/jms/queues/one_queues.yaml

This file was deleted.

25 changes: 0 additions & 25 deletions wls11g-centos-clustered/puppet/apps/one/jms/quotas/one_quotas.yaml

This file was deleted.

Loading

0 comments on commit 8656e03

Please sign in to comment.